hmartens
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Multi-Step Forms] multiform TagI hope I can jump in here and ask a similar question ?? Thanks for the great plugin! It works great.
At the end of the form I want to show the summary of all the fields they entered, but I have a bunch of checkboxes so I need to show all the boxes that the person checked. Is there a way to show only the checked checkboxes?
Thank you
Forum: Themes and Templates
In reply to: Show subcategories on category page instead of postsI managed to fix this. Instead of using:
$category_id = $categories[0]->category_parent;
I rather specified the parent category id like this:
$category_id = '5290';
And that fixed my issue.Forum: Plugins
In reply to: [New User Approve] WordPress 4.6 – User Approved Filter BrokeMine is also not working and I see this has been broken since WordPress 4.4 .
Who do I need to buy a coffee for at WordPress to fix this ??
Forum: Themes and Templates
In reply to: Show subcategories on category page instead of postsHi Lisa
I hope you can help me again ?? This advice of yours worked so brilliantly but there is one snag. if an article is tagged with the category of one of the categories on this special page I made with your code and it’s also tagged with another random category, it messed my special page up completely. It adds blocks of every category I have on the site. When I uncheck the other random category then it displays perfect again.
Is there something I can add that can fix/protect it against this happening?
Thank you.
Forum: Plugins
In reply to: [WooCommerce] How to remove default text on My Account pageOk great, I got it working! I had to copy it in my theme to a folder called woocommerce and in a folder in there called myaccount.
Thank you for the help wonderful people!
Forum: Plugins
In reply to: [WooCommerce] How to remove default text on My Account pageThanks for all the help! Much appreciated!
I am using a child theme. I’ve added the dashboard.php to my theme and changed the text but I’m not seeing the text change. Is there another place I need to place it? I’ve added the dashboard.php into my theme folder where my functions.php file is.
Thank you
Forum: Plugins
In reply to: [WooCommerce] How to remove default text on My Account pageThank you Lorro. I was thinking about doing it this way but it seems a bit more hacky to me ??
Appreciate your help!
Forum: Plugins
In reply to: [WooCommerce] How to remove default text on My Account pageAh brillant Sandy! Thank you for steering me in the right direction ??
I appreciate it.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Not working for Afrikaans languageGood day
Sorry for taking so long to reply.
It was for the message that comes up if you’re already added your email to the list. I found out the place to change it so I’m all good thanks.
Good day
Apologies for only replying now. So busy on so many projects at the same time ??
I’m running WP 4.6.1
It’s a single site.
I’m running the command:
wp sirsc regenerateThank you
Forum: Plugins
In reply to: [Regenerate Thumbnails] Where is the plug in?!On the left panel in WordPress dashboard,go to Settings > Image Regenerate & Select Crop Settings
Did this help?
Forum: Plugins
In reply to: [Regenerate Thumbnails] Delays and partial regenerationThese features will be really awesome! I’m finding that when I have a lot of photos it freezes after a while when I regenerate the thumbnails and then I have to click regenerate again and then it goes through all the ones it just did and a little bit later it freezes again and I have to start again…
Forum: Themes and Templates
In reply to: Show subcategories on category page instead of postsThank you thank you thank you Lisa!
It works ?? I’m so thankful you took the time to help me, it’s so much appreciated!
I changed a little bit to get it displaying as needed but here’s the final code if anyone else stumbles upon this post ?? Thanks again Lisa!
And I used the plugin Categories Images that allows me to add images to categories and I can show them on this page ??
$categories = get_the_category(); // $category_id = $categories[0]->cat_ID; $category_id = $categories[0]->category_parent; $args = array( 'type' => 'post', 'child_of' => $category_id, 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => FALSE, 'hierarchical' => 1, 'taxonomy' => 'category', ); $child_categories = get_categories($args); ?> <?php foreach ($child_categories As $Category) { $strLink = esc_url(get_category_link($Category->term_id)); ?> <div> <h2><a>"><?php echo $Category->name ?></a></h2> <?php if (function_exists('z_taxonomy_image')) z_taxonomy_image($Category->term_id); ?> <div><?php echo $Category->description ?></div> <div><a>">More...</a></div> </div> <?php }
Hi. The website is still in dev so I cannot share it. But it’s the standard Storefront theme menu that is sticky at the bottom of the screen when on phone.
Thank you.
Thank you for responding. I ended up going into the fields and changing the titles as you mentioned.
Thank you for responding and helping me!