sroskylos
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Cloak Affiliate Links] Redirect LoopI test it with the same results.
Forum: Plugins
In reply to: [A-Z Listing] Thumbs in shortcode?Thank you Daniel for the information and this awesome plugin
Forum: Plugins
In reply to: [A-Z Listing] URGENT! NEW FEATURE NEEDED – A-Z by posts with ThumbnailsHow is possible to output thumbs in this shortcode?
[a-z-listing post-type="product" taxonomy="brands" display="terms" numbers="before" grouping="numbers,3"]
- This reply was modified 6 years, 6 months ago by sroskylos.
Forum: Plugins
In reply to: [Cookie Information | Free GDPR Consent Solution] Facebook CommentsForum: Plugins
In reply to: [Perfect Brands for WooCommerce] Disable Link On Brand PageAwesome ?? Thank you so much ??
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Conflict With Font Awesome 5Yes i flush it. How can i disable the awesome not loaded by the plugin?
Can you plz give the full function?
Forum: Plugins
In reply to: [WP-PostRatings] GDPR ComplianceI install the plugin, i active it and when i got to setup i get 404
Forum: Plugins
In reply to: [WP-PostRatings] Cookie ratedHow many days store the cookie?
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Forced to post as visitorI have the same problem too. I am admin and i post like user posts on my page.
Forum: Plugins
In reply to: [A-Z Listing] Widget TaxonomyThank you for the information. I will wait the next major update then.
Forum: Plugins
In reply to: [A-Z Listing] Widget TaxonomyI see also that on widget doesn’t show up the 0-9. I use the shortcode
[a-z-listing post-type="product" taxonomy="pwb-brand" display="terms" numbers="before" grouping="numbers"]
for display in one page. What shortcode i must use to export the right widget on sidebar on another page?Forum: Plugins
In reply to: [Cooked - Recipe Management] Replacing Print Icon with TextHello
How can i do not lose the changes on the next update when i modify the/cooked/includes/class.cooked-shortcodes.php
?Forum: Plugins
In reply to: [SiteOrigin Widgets Bundle] php 7.0 compatibilityThank you for the quick reply.
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brand Name in Yoast SEO ProductAny solution to count and display the total of products of the brand?
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Show all brand products with WP_QueryI have the code
<?php // get products $args = array( 'post_type' => 'product', 'posts_per_page' => -1, 'tax_query' => array( array( 'taxonomy' => 'pwb-brand', //brands are terms of 'pwb-brand' taxonomy 'field' => 'name', //search by term name 'terms' => array ('WHAT TO PUT HERE?' ) //brand names here ) ) ); $loop = new WP_Query( $args ); if ( $loop->have_posts() ) { while ( $loop->have_posts() ) : $loop->the_post(); wc_get_template_part( 'content', 'product' ); endwhile; } else { echo __( 'not found anyhting.' ); } wp_reset_postdata(); ?>