titodevera
Forum Replies Created
-
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Error After InstallHi vizzzio!
What version of PHP are you running on your hosting? Remember that PWB requires PHP >= 5.6
Activate WP_DEBUG and see your server logs for finding some PHP warning/fatal error.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] API IssueForum: Plugins
In reply to: [Perfect Brands for WooCommerce] External Brand Logo and Banner ImageHi Iodisy!
Since your WordPress installation be configured for working with the CDN, the brand images will be served from the CDN too.
??
Solved ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] error after update1.7.6 solves the error, topic resolved ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Widget Brand SoringHi Aprowler
Yes, you can configure your custom sorting algorithm based on slugs.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Widget Hide From Product Tag PaGEHi Aprowler!
The widget should works well with product tags archives. What issues are you experimenting?
You can use a different sidebar for the tags archives if you want.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Error After UpdateHi sroskylos!
Are you using a cache plugin or similar? Purge your caché and try again please.
??
Hi taylorclark!
All brands plugins (including PWB) use a custom taxonomy for the brands, it seems that you should use the PRO version of “WooCommerce Product Feed” for get it works.
You can also try “Product Feed PRO for WooCommerce (By AdTribes.io)”, a lot of people are using it with PWB for generating the Google Shopping feed.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Abrir enlace en nueva ventanaBuenas tardes sandrinne2001!
Actualmente no es posible hacer lo que comentas con ninguna opción del plugin, pero si tienes conocimientos básicos de desarrollo web con WordPress podrás hacerlo facilmente.
En primer lugar deberías desactivar la opción “WooCommerce > Ajustes > Marcas > Mostrar marcas en la página del producto”. Más tarde a?adir tú de nuevo las marcas en la página del producto mediante un action hook de WooCommerce, sería algo similar a esto:
add_action('woocommerce_single_product_summary', function(){ global $product; $brands = wp_get_post_terms( $product->get_ID(), 'pwb-brand' ); if( !is_wp_error( $brands ) ){ foreach( $brands as $brand ){ $brand_link = get_term_link ( $brand->term_id, 'pwb-brand' ); $attachment_id = get_term_meta( $brand->term_id, 'pwb_brand_image', true ); $attachment_html = wp_get_attachment_image( $attachment_id, 'thumbnail' ); echo '<div>'; if( !empty( $attachment_html ) ){ echo '<a href="'.$brand_link.'" title="'.$brand->name.'" target="_blank" rel="noopener noreferrer">'.$attachment_html.'</a>'; }else{ echo '<a href="'.$brand_link.'" target="_blank" rel="noopener noreferrer">'.$brand->name.'</a>'; } echo '</div>'; } } }, 40);
Imagino que tendrás un buen motivo para implementar este “cambio”, pero a priori el enlace debería abrirse en la misma ventana, siendo totalmente desaconsejado el target blank en este caso.
Un saludo y gracias por utilizar PWB en tu proyecto! ??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Remove brand name on brand pageHi rikaathena!
Are you talking about the “pwb-all-brands” shortcode? You can use the
title_position="none"
parameter.??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] What is brand meta key? (WP All Import)Hi marv2!
The brands are not saved as metadata. Each brand is a term inside the “pwb-brand” taxonomy.
PWB supports the WooCommerce native products import/export also, you can try it, although “WP All Import” should works too.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Widget Brand SoringHi Aprowler!
You can use the
pwb_widget_brand_filter
filter hook to alter the order as your needs:add_filter( 'pwb_widget_brand_filter', function( $brands ){ //your custom ordering algorithm here return $brands;//array of WP_Term objects } );
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] error after updateHi mobileserviceshop.
Please, update PWB to 1.7.6, it should solves the error.
??
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] error after updateHi mobileserviceshop!
It seems that exists a conflict with the “Product Tabs Manager for WooCommerce” plugin.
I will check it and fix as soon as possible.
Thank you very much for reporting! ??