Ian Sackofwits
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: show more blog postsHey, umanoodle, it looks like you’re using a page builder.
I would recommend going into the page builder settings and adjust the number of posts that appear.
Forum: Plugins
In reply to: [Contact Form 7] No Emails receivedHey, amandahayden82, I’m another Contact Form 7 user.
Is the email issue just with CF7?
I would recommend installing and configuring an SMTP plugin to see if that addresses the issue.
Forum: Themes and Templates
In reply to: [Neve] Neve Page Editor ErrorHey, russab, I’m another Neve user.
Are you able to temporarily deactivate that plugin to see if it fixes the issue?
Forum: Plugins
In reply to: [Contact Form 7] email error messageHey, francoisbenard080652, it looks like the contact form fails to send because of an email issue.
I would recommend installing an SMTP plugin and completing a sample submission to see if that addresses the issue; it could be the server email settings are not properly configured.
Forum: Themes and Templates
In reply to: [Astra] Remove “Read More” globally in (Free) Astra themeHey, mbzo2006, you can just hook the
__return_empty_stringfunction://Remove «read more» globally add_filter( ‘astra_post_read_more’, ‘__return_empty_string’ );Here is the documentation page for the function: https://developer.ww.wp.xz.cn/reference/functions/__return_empty_string/
Forum: Plugins
In reply to: [WooCommerce] There was an error getting your inbox. Please try again.Hey, jombangundangan, I’m another WooCommerce user.
I would recommend reading this support topic about the same issue: https://ww.wp.xz.cn/support/topic/error-there-was-an-error-getting-your-inbox/
Forum: Fixing WordPress
In reply to: Allowing SOME users to bypass comment moderationHey, ks2019, you can use this code I produced as inspiration to achieve what you want:
add_filter( 'pre_comment_approved' , 'bypass_moderation_filter' , '99', 2 ); function bypass_moderation_filter( $approved , $commentdata ) { $bypass_moderation_users = array(3); $user_ID = $commentdata['user_ID']; //list of user IDs that will bypass approval if (in_array($user_ID, $bypass_moderation_users)) return 1; //comment is approved return $approved; }- This reply was modified 3 years, 3 months ago by Ian Sackofwits. Reason: clarification with code
Hey, moccarisso, if you not comfortable fixing this issue yourself, I would recommend reaching out to your hosting provider to assist you.
Out of curiosity, are you receiving any emails indicating what the issue is caused by?
Forum: Everything else WordPress
In reply to: Ads are not showing on my site!Hey, luna25, where on your site is the space that should be occupied by the Google AdSense ads?
Hey, wisharchitects, this is a good documentation page about the wp-config.php file: https://developer.ww.wp.xz.cn/apis/wp-config-php/
You should be able to access the file via FTP or cPanel.
Try searching for a folder called “public_ html” and see if the wp-config file is located in there.
If you need more help getting access to your wp-config.php file, I would recommend reaching out to your hosting provider like the message suggests.
Forum: Fixing WordPress
In reply to: plugin broke my webpageHey, lagattosa, I would recommend reaching out to your hosting provider to help you with the problematic plugin table.
What plugin and its table caused the problem for you?
Hey, duaaaosman, I’m another WooCommerce user.
I would recommend using the Health Check plugin and temporarily deactivate all plugins besides WooCommerce as well as temporarily switching your theme to see if that addresses the issue.
Forum: Plugins
In reply to: [WooCommerce] Sidebar widget errorHey, patryk86, I’m another WooCommerce user.
What widget is causing the JavaScript error to appear or is it all widgets are causing an issue for you?
Forum: Fixing WordPress
In reply to: There has been a critical error on this website.Hey, rhercules, it looks like there’s another support topic that describes the same issue: https://ww.wp.xz.cn/support/topic/activate-problem-after-installation/
If you have FTP access, I would recommend deactivating that plugin via FTP temporarily so you can regain access back to your site.
Hey, Elina, I would recommend creating a staging version of your site – a version of your site where you could play around with disabling plugins/switching themes, etc. You can make a staging version of your site with Local by Flywheel.
On the staging version of your site, I would recommend disabling plugins until you can resolve the issue.