mandipluitel
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 Dropdown Place Holderfunction wpcf7_select_placeholder_update($html) { $text = 'How did you hear about us?'; $html = str_replace('<option value="">—Please choose an option—</option>', '<option value="">' . $text . '</option>', $html); return $html; } add_filter('wpcf7_form_elements', 'wpcf7_select_placeholder_update');Try this and also as mentioned above use (&@8212 ; ) instead of –
- This reply was modified 2 years, 5 months ago by mandipluitel.
- This reply was modified 2 years, 5 months ago by mandipluitel.
- This reply was modified 2 years, 5 months ago by mandipluitel.
- This reply was modified 2 years, 5 months ago by mandipluitel.
- This reply was modified 2 years, 5 months ago by mandipluitel.
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] JS errorWorked Perfectly thanks 🙂
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] JS errorI am having the same issue with one of my sites, the issue is only seen on the console when you are logged in, that’s the reason why the author is not able to see the issue. I too am looking for the solution. Hope to get a solution soon.
Forum: Plugins
In reply to: [jQuery Pin It Button for Images] not working on featured imagesmy mistake again 🙂 thanks for the plugin it worked
Forum: Plugins
In reply to: [jQuery Pin It Button for Images] not working on featured imageshi @mrsztuczkens i used the div.post_box img code where you said earlier but its not working at all in my featured image nor in my post images.
any help?
Regards
Forum: Plugins
In reply to: [Taxonomy Images] [Plugin: Taxonomy Images] get child category imageHi Elbego, can you help me out with this
<img src="<?php foreach((get_the_category()) as $category) $term_id = $category->cat_ID; $image = get_option( 'taxonomy_image_' . $term_id ); echo $image; ?>" alt="<?php $category = get_the_category(); echo $category[0]->cat_name; ?>" class="catimg" />I want to get the subcategory image but using this code i am getting only category image. Not an expert just on a learning phase if you can edit my code it will be awesome.
Help would be appreciated.
Forum: Plugins
In reply to: [Taxonomy Images] Get image associated with specific categoryHey Peepfunk check this out
hope it may help you it works perfectly for category
<img src="<?php foreach((get_the_category()) as $category) $term_id = $category->cat_ID; $image = get_option( 'taxonomy_image_' . $term_id ); echo $image; ?>" alt="<?php $category = get_the_category(); echo $category[0]->cat_name; ?>" />How ever if you find a way to display the subcategory do let me know 🙂
Cheers
Forum: Themes and Templates
In reply to: [Prana] space around picturetry adding line-height to the text and allow some margin too.
M