fletsch
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Form not rendered inside form tagHi Takayuki
Thanks fot your answer but actually I went trew the documentation and also googled for an answer but couldn‘t find anything. Don‘t think that I set up the form wrong. The <form> tag that‘s wrapping around the form fields is done by the plugin automatically if I‘m right.
Can you might have a look at the source code in my page? It‘s really strange the first form doesn‘t have the <form> tags but the second and third do. First and second are actually the same contact form, placed withe the same short code. First one is just wrapped by a <div> and not working, second by <form> and therefore working.
- This reply was modified 3 years, 1 month ago by fletsch.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Translation not workingHi Lap, thanks for your answer.
But what if I’d like to translate it with loco translate only? I’ve only one shop language and will send the newsletter in the same. It’s the first plugin I’ve seen that has problems with loco translate. Intentionally?
Best regards- This reply was modified 3 years, 3 months ago by fletsch.
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Show brand name on product pageHi all
Here’s a solution I built with codes from other support tickets.
// ADD BRAND NAME TO PRODUCT TITLE ON PRODUCT PAGE remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_title', 5 ); add_action( 'woocommerce_single_product_summary', 'aq_display_brand_before_title', 5 ); function aq_display_brand_before_title(){ global $product; $product_id = $product->get_id(); $brands = wp_get_post_terms( $product_id, 'pwb-brand' ); foreach( $brands as $brand ) { echo '<h1 class=”product_title entry-title”>'; if( $brand->name ){ echo $brand->name;} echo ' '; the_title(); echo '</h1>'; } }Forum: Plugins
In reply to: [WooCommerce] How to bundle products depended on the size (attribute)?Hi @maykato
Could you explain a bit more how I could solve that with the plugins combined? I already know them and if I‘m right it‘s only possible to use one of each per product? Also the conditional logic in the composition plugin works only for choosen attributes/components and not for the quantity of products? If I‘m right you can only set a fixed quantity per component. no?
I’d like to consider tags from the taxonomy as well in the search results. Is there a function to turn this on? I’m not sure how to understand the answers. Acutally my search does not affect on tags.
wow that works just perfect!! thanks a lot for your help! =)
Any chance to get help? I guess it’s not a big deal to adapt this code for Better Search?
add_filter('relevanssi_pre_excerpt_content', 'rlv_trim_vc_shortcodes'); function rlv_trim_vc_shortcodes($content) { $content = preg_replace('/\[\/?vc.*?\]/', '', $content); $content = preg_replace('/\[\/?mk.*?\]/', '', $content); return $content; }