alexdex
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Page Builder – Zion Builder] Import TemplateIs it possible to have an answer?
It looks that this composer support is abandoned!!I need the same thing, I need to use it on the my account page
Is it possible?
My template is using custom woocommerce template file and not exist the hook woocommerce_before_shop_loop_item_title
I want to display before my thumbnail on the shop page and the template is using woocommerce_template_loop_product_thumbnail
So i change the code in this way:
// add brand name before title wine
add_action( ‘woocommerce_template_loop_product_thumbnail’, ‘aq_display_brand_before_title , 10, 0’ );
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 ‘<p class=”alexbrand”>’.$brand->name.'</p>’;
}Somebody can help me?
- This reply was modified 3 years, 10 months ago by alexdex.
Please, any help?
Hi, i am going crazy for make it work.My template is using custom woocommerce template file and not exist the hook woocommerce_before_shop_loop_item_title
I want to display before my thumbnail on the shop page and the template is using woocommerce_template_loop_product_thumbnail
So i change the code in this way:
// add brand name before title wine add_action( 'woocommerce_template_loop_product_thumbnail', 'aq_display_brand_before_title , 10, 0' ); 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 '<p class="alexbrand">'.$brand->name.'</p>'; }
Nothing happen, no error, no brand visible at all. Please help me
Any Help?
ThanksHi, thanks for your reply. Can you explain to me where I can set the settings in order to have the customer emails? I did not find it, when I export the CSV I do not have this field, thank you so much
Somebody can answer me?
I follow a previous support task.
I add in function.php
add_filter( ‘wpo_wcpdf_mpdf_options’, function( $options ){
// get defaults
$defaultConfig = (new Mpdf\Config\ConfigVariables())->getDefaults();
$fontDir = $defaultConfig[‘fontDir’];
$defaultFontConfig = (new Mpdf\Config\FontVariables())->getDefaults();
$fontData = $defaultFontConfig[‘fontdata’];// setup custom font dir & font data
$customFontDir = WPO_WCPDF()->settings->get_template_path() . ‘/fonts’;
$customFontData = [
‘Kanit’ => [
‘R’ => ‘Kanit.ttf’, // use ‘B’,’I’,’BI’ keys for Bold, Italic & Bold Italic respectively
‘useOTL’ => 0xFF,
],
];// merge in options
$options[‘fontDir’] = array_merge( $fontDir, [ $customFontDir ] );
$options[‘fontdata’] = $fontData + $customFontData;return $options;
} );I am using a custom template and the font is declared on the css. I do not understand why its not working, i have ? instead of the THAI letters. I need help
Somebody can help me?
Forum: Plugins
In reply to: [YITH Request a Quote for WooCommerce] button add to quote disappearI did it already, I am using the pro version, I am going to open a ticket with the admin credential, Thanks
I have the same issue, wp pro with license, after the upèdate is not working anymore, i cannot see the addons properties on the wp import, Please i need help as soon as possible
Forum: Plugins
In reply to: [Disqus Conditional Load] Shortcode not workAny idea? I really need to fix this
Thanks
Forum: Plugins
In reply to: [Disqus Conditional Load] Shortcode not workI add the shortcode in the normal classic editor of the single page
Forum: Plugins
In reply to: [Disqus Conditional Load] Shortcode not workSomebody can help me?