Ian Sackofwits
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Neve] decrease space around post titleHey, lauriepk, I’m another Neve user.
This CSS can be a good starting point for you to start playing around with:
.nv-single-post-wrap>div:not(:last-child) {
margin: 0;
}Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 not workingHey, davidleisner, I’m another CF7 user.
I would suggest installing an SMTP plugin temporarily to see if that addresses the issue.
Forum: Fixing WordPress
In reply to: Can’t see my menuHey, androidandreas, I suggest clearing your site cache (either plugin or server, if you have a caching mechanism enabled).
I also would recommend flushing your permalinks to see if that addresses the issue: Go to Settings > Permalinks and click the Save Changes blue button.
Forum: Developing with WordPress
In reply to: Limiting words on excerpt but only on one section/page?Hey, thetoolman123, I would try hooking onto
the_excerpthook – https://developer.ww.wp.xz.cn/reference/hooks/the_excerpt/ – and then remove the hooked function after you output the excerpt.Otherwise, you could replace using the
the_excerpthook withexcerpt_length: https://developer.ww.wp.xz.cn/reference/hooks/the_excerpt/Forum: Everything else WordPress
In reply to: email going to wrong addressHey, lordsnake, I suggest going into “Settings->Discussions” in the back-end and adjust the settings in the “Email me whenever” section so that you stop receiving comment related emails.
Forum: Plugins
In reply to: [WooCommerce] False country shipping address scamHey, antoine69, I’m another Woo user.
I would recommend you have an address validator so that you can confirm that the customer submitted address is real before allowing the customer to complete a purchase.
Forum: Plugins
In reply to: [WooCommerce] The 5 stars – a star behind the starsHey, Simon, that could be a CSS issue or an issue with WooCommerce.
Is there any way that you can link to a page where you’re experiencing this problem?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce CrushedHey, cristinav1983, did you receive any WordPress errors indicating an error that caused your site to crash?
I would recommend reaching out to your hosting provider to see if they can help you with this.
Otherwise, I would try doing some investigation via FTP to see what’s going on.
Forum: Fixing WordPress
In reply to: WP admin login is very slowHey, walexjalper787, I would recommend temporarily switching your theme to one of the default TwentyTwenty themes and/or deactivating all plugins to see if either of those things address this issue.
You can temporarily switch your theme/deactivate plugins using the Health Check plugin.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce reusable blockHey, shinteetahgmailcom, I’m another WooCommerce user.
You can address this issue by using a shortcode.
Here’s a tutorial that should explain how to use shortcodes:
https://www.wpbeginner.com/wp-tutorials/how-to-add-a-shortcode-in-wordpress/
It will require some custom coding via PHP.
Forum: Requests and Feedback
In reply to: Cannot provide blog ownership proofHey, optimix, it looks like you are using a wordpress.com site, so I would suggest reaching out to the support for wordpress.com:
https://wordpress.com/support/
Here is a link to the forums for wordpress.com:
Forum: Everything else WordPress
In reply to: Home page updateHey, trs6363, are you using the built-in page editor (Gutenberg) or are you using a page builder?
Forum: Plugins
In reply to: [WooCommerce] How to Set Up WooCommerce Register/Login page Field PlaceholderHey, khzdesiign, I’m another Woo user.
You can override the form login via including the file in your child theme – the file is woocommerce/templates/myaccount/form-login.php .
Alternatively, you could use a translator plugin/PHP to replace the string, as the string is output like so:
<?php esc_html_e( 'Username or email address', 'woocommerce' ); ?>PHP can do this via the
gettexthook: https://developer.ww.wp.xz.cn/reference/hooks/gettext/Forum: Themes and Templates
In reply to: [Hello Elementor] Translate “Category:” from archive pageHi, caiodigioia, ideally you would want to find an existing action or filter hook and then use that hook to manipulate the output so your changes don’t get overridden every time an update happens.
You can read more about actions here: https://developer.ww.wp.xz.cn/plugins/hooks/actions/
And filters here: https://developer.ww.wp.xz.cn/plugins/hooks/filters/
Forum: Plugins
In reply to: [Contact Form 7] Error sending formHey, zarth, I’m another CF7 user.
Where on your site is the contact form to which you were referring?