jodybethw
Forum Replies Created
-
Forum: Plugins
In reply to: [Gutenberg] Centering button in header on mobileI ran out of time, so I removed the button. Never found a solution.
Forum: Plugins
In reply to: [Gutenberg] Centering button in header on mobile@jordesign on my iphone 14 running Chrome, I am seeing the hamburger centered under the logo, but the button is to the right of the hamburger, not underneath as I would have hoped. Anything I can do? :/ Thank you for your help!
- This reply was modified 8 months, 4 weeks ago by jodybethw.
Forum: Plugins
In reply to: [Gutenberg] Bug?@jordesign, any thoughts? I’d really appreciate your help. Thank you!
Forum: Plugins
In reply to: [Contact Form 7] Form taking 10+ seconds to submitI upgraded our hosing package. It is a bit faster, but still taking 5+ seconds. Will live with it for now, but it seems slower than other forms I’ve used on other sites.
Forum: Plugins
In reply to: [Contact Form 7] Form taking 10+ seconds to submitI just tried it again by placing the form on https://speakerdynamics.com/form-testing, using Twenty Twenty-Three theme, and turning off ALL plugins except for Contact Form 7. It is still taking a long time to submit.
Forum: Plugins
In reply to: [Contact Form 7] Form taking 10+ seconds to submitI’m sorry, that meant to say:
Keep in mind that the form is working but taking 10+ seconds to submit when ALL plugins are deactivated and I am only running the Twenty Twenty-Four theme, Contact Form 7 and Popup Maker.
Forum: Plugins
In reply to: [Contact Form 7] Form taking 10+ seconds to submitKeep in mind that the form is NOT working when ALL plugins are deactivated and I am only running the Twenty Twenty-Four theme, Contact Form 7 and Popup Maker.
AddToAny Share Buttons
Contact Form CFDB7
Temporary Login Without Password
Testimonial Slider and Showcase
WP Logo Showcase Responsive Slider and Carousel
Yoast SEO
CoSchedule
Disable Comments
Download Monitor
Duplicate Page
Easy FancyBox
Email Before Download
Head, Footer and Post Injections
Intuitive Custom Post Order
Popup Maker
Post SMTP
Redirection
Theme: Salient Core
Salient Demo Importer
Salient Home Slider
Salient Nectar Slider
Salient Portfolio
Salient Shortcodes
Salient Social
Salient Widgets
Salient WPBakery Page Builder
Forum: Fixing WordPress
In reply to: How to show post count on archive pagesOh you know what? I just realized that this search issue is an Elementor problem. Not related to what you wee helping me with. Nevermind! Thank you SO much for your help!
Forum: Fixing WordPress
In reply to: How to show post count on archive pagesThanks. One big problem:
Search results are being included in this. So when I search for the word “who” on the site, I get this output:
The search “Search Results for: who” yielded
545 articlesI tried removing “Search Results for:” from search/php but it sin’t do anything. Is there a way to exclude search results from this function? I’ve tried to find info on this and I’m getting nowhere. I’m not being paid to do this, and I’m tearing my hair out. I REALLY appreciate your help!
Forum: Fixing WordPress
In reply to: How to show post count on archive pagesI figured out how to add a second echo to add “articles” at the end. So I just need help with inputting the tags/categories. Some of the archive pages are for categories, some have tags, and other are custom taxonomies. Ugh.
- This reply was modified 3 years, 2 months ago by jodybethw.
Forum: Fixing WordPress
In reply to: How to show post count on archive pagesOMG @aetherunbound you’re a genius! So close. So if I want it to say, for instance:
The search “Colorado” yielded 5 articles.
How do I add text before and after the post count? And how do I automatically input the tag for each archive page?
- This reply was modified 3 years, 2 months ago by jodybethw.
Forum: Fixing WordPress
In reply to: How to show post count on archive pagesThank you so much for replying, @aetherunbound!
I have an archive page, but don’t know how to add this code. I am using Elementor, which requires that I create a shortcode in functions.php:
// Shortcode to output custom PHP in Elementor function wpc_elementor_shortcode( $atts ) { echo "This is my custom PHP output in Elementor!"; } add_shortcode( 'my_elementor_php_output', 'wpc_elementor_shortcode');
Where should I place
$GLOBALS['wp_query']->found_posts
?Forum: Developing with WordPress
In reply to: Auto adding new post categories to menuNo, I have not been able to figure it out. I don’t know why this isn’t easier to implement for non-php coders!
- This reply was modified 3 years, 5 months ago by jodybethw.
Forum: Developing with WordPress
In reply to: Auto adding new post categories to menuForum: Developing with WordPress
In reply to: Auto adding new post categories to menu@bcworkz Thank you — I appreciate your help SO much! I made the changes you suggested, but I’m getting a nonce error. I keep going over it but I’m obviously missing something. This is what I’ve used:
// Shortcode to output custom PHP in Elementor function wpc_elementor_shortcode( $atts ) { array( 'theme_location' => 'primary', 'walker' => new Walker_State_Categories, 'echo' => false, ); } add_shortcode( 'menu_walker', 'wpc_elementor_shortcode');
Below is what Elementor says to use for the shortcode; am I calling the array incorrectly inside the function? I can’t seem to find any similar examples online to figure this out on my own.
// Shortcode to output custom PHP in Elementor function wpc_elementor_shortcode( $atts ) { echo "This is my custom PHP output in Elementor!"; } add_shortcode( 'my_elementor_php_output', 'wpc_elementor_shortcode');