Title: Sharp-Image's Replies | WordPress.org

---

# Sharp-Image

  [  ](https://wordpress.org/support/users/sharp-image/)

 *   [Profile](https://wordpress.org/support/users/sharp-image/)
 *   [Topics Started](https://wordpress.org/support/users/sharp-image/topics/)
 *   [Replies Created](https://wordpress.org/support/users/sharp-image/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/sharp-image/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/sharp-image/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/sharp-image/engagements/)
 *   [Favorites](https://wordpress.org/support/users/sharp-image/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/sharp-image/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/sharp-image/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[RSS Aggregator by Feedzy – Feed to Post, Autoblogging, News & YouTube Video Feeds Aggregator] Created RSS Feedzy posts, come up as a page](https://wordpress.org/support/topic/created-rss-feedzy-posts-come-up-as-a-page/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/created-rss-feedzy-posts-come-up-as-a-page/#post-18062845)
 * Hi, I’ve downgrade the WP core version into vers. 6.1.7 but that do not fix this
   issue. 
   Also checked the single.php template but i don’t see a specific strange
   bug in it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[RSS Aggregator by Feedzy – Feed to Post, Autoblogging, News & YouTube Video Feeds Aggregator] Created RSS Feedzy posts, come up as a page](https://wordpress.org/support/topic/created-rss-feedzy-posts-come-up-as-a-page/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/created-rss-feedzy-posts-come-up-as-a-page/#post-18062708)
 * Hi, thanks for the quick feedback.
   Well now is the post-template not coming up
   that’s showing the correct style. when i’m want to edit the post a page the the“
   post-item” has the standard page template. Could this be a WP version issue?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mollie Payments for WooCommerce] Warning: call_user_func_array()](https://wordpress.org/support/topic/warning-call_user_func_array-45/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/warning-call_user_func_array-45/#post-15546538)
 * Hi thanks,
    Is this update working with the latest WP version?
 * regards Bouke
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mollie Payments for WooCommerce] Warning: call_user_func_array()](https://wordpress.org/support/topic/warning-call_user_func_array-45/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/warning-call_user_func_array-45/#post-15546389)
 * Hi,
 * Thanks for your feedback. After updating the plugin I have still this message
   in the dashboard:
 * Warning: call_user_func_array() expects parameter 1 to be a valid callback, class‘
   Mollie\WooCommerce\Activation\ActivationModule’ does not have a method ‘mollieDeleteWPTranslationFiles’
   in /home/customer/www/avonic.com/public_html/wp-includes/class-wp-hook.php on
   line 307
 * Thanks
    Bouke
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Cross-cells shows random products instead of the filled in products](https://wordpress.org/support/topic/cross-cells-shows-random-products-instead-of-the-filled-in-products/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/cross-cells-shows-random-products-instead-of-the-filled-in-products/#post-15362143)
 * Hi [@maykato](https://wordpress.org/support/users/maykato/),
 * Thanks for your feedback!
 * On this moment I’m using a snippet that shows the Cross-cells on the card page
   as well on the product page:
 *     ```
       <?php
       // Remove "related Products"
       remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );
   
       // Show cross-sells using related template on single product page
       // see https://docs.woocommerce.com/wc-apidocs/source-function-woocommerce_related_products.html#1264-1296
       function wc_output_cross_sells() {
           $crosssells = get_post_meta( get_the_ID(), '_crosssell_ids', true );
   
           $args = array(
               'posts_per_page' => 2,
               'columns'        => 2,
               'orderby'        => 'rand',
               'order'          => 'desc',
           );
           $args['related_products'] = array_map( 'wc_get_product', $crosssells );
   
           // Set global loop values.
           $woocommerce_loop['name']    = 'related';
           $woocommerce_loop['columns'] = apply_filters( 'woocommerce_related_products_columns', $args['columns'] );
           wc_get_template( 'single-product/related.php', $args );
       }
       add_action('woocommerce_after_single_product_summary', 'wc_output_cross_sells', 30);
       ?>
       ```
   
 * Not sure or this is a stable solution but it works outside using a plugin.
 * Regards Bouke
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Cross-cells shows random products instead of the filled in products](https://wordpress.org/support/topic/cross-cells-shows-random-products-instead-of-the-filled-in-products/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/cross-cells-shows-random-products-instead-of-the-filled-in-products/#post-15345095)
 * Hi Juan,
 * Thanks for your explanation!
 * – So if I understand you right, are the Cross-cells located in the cart section
   that are also interested for customers.
    – And are the Related products located
   on the products based on the specific product category and switching after refreshing
   a page. Wondering or it is possible to show Related products with a custom filled
   in product so we have more control on this section.
 * Regards Bouke
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Code Snippets] php error after installing plugin](https://wordpress.org/support/topic/php-error-after-installing-plugin/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [4 years, 5 months ago](https://wordpress.org/support/topic/php-error-after-installing-plugin/#post-15081548)
 * Issue is solved by updating absolute paths in the wp-config.php
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Kadence WooCommerce Email Designer] Customize Order Note section for a specific template](https://wordpress.org/support/topic/customize-order-note-section-for-a-specific-template/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/customize-order-note-section-for-a-specific-template/#post-15032093)
 * Hello,
 * Thanks for your feedback. So it seems that there is one overall template that
   is using for the several mails after a new order is made.
 * I thought that I contacted directly Kadence Woocommerce Email designer for support.
   Or is it better to contact the Woocommerce shop plugin directly?
 * Regards Bouke
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Conditional Fields for Contact Form 7] Hide textblock after clicking to another group](https://wordpress.org/support/topic/hide-textblock-after-clicking-to-another-group/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/hide-textblock-after-clicking-to-another-group/#post-14582504)
 * Hi,
    Thanks a lot, works perfect!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Conditional Fields for Contact Form 7] Hide textblock after clicking to another group](https://wordpress.org/support/topic/hide-textblock-after-clicking-to-another-group/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/hide-textblock-after-clicking-to-another-group/#post-14581059)
 * Done, form can be found here:
    [https://conditional-fields-cf7.bdwm.be/form-tester/?hash=3e6ddf1ad58bf80c05630bc157f57536](https://conditional-fields-cf7.bdwm.be/form-tester/?hash=3e6ddf1ad58bf80c05630bc157f57536)
 * Thought that I must setup I nested group at some way but still not no what goes
   wrong here.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TranslatePress - Translate Multilingual sites with AI Translation] Use toggle visual to switch a language](https://wordpress.org/support/topic/use-toggle-visual-to-switch-a-language/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [4 years, 11 months ago](https://wordpress.org/support/topic/use-toggle-visual-to-switch-a-language/#post-14477373)
 * Hello Anghel,
 * Do you have a solution for a toggle switch like I subscribe. The NL – EN Buttons
   are floating already in the top menu and have the right design setup with css
   but I mis the function of toggling here.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TranslatePress - Translate Multilingual sites with AI Translation] Use toggle visual to switch a language](https://wordpress.org/support/topic/use-toggle-visual-to-switch-a-language/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [4 years, 12 months ago](https://wordpress.org/support/topic/use-toggle-visual-to-switch-a-language/#post-14444890)
 * Hello Anghel,
 * Thanks for your feedback.
 * Can you let me know how to set this up with css?
 * The html output for the languages in the menu is:
 * `<div class="top_bar_menu"><li id="menu-item-378" class="english trp-language-
   switcher-container menu-item menu-item-type-post_type menu-item-object-language_switcher
   menu-item-378"><a href="http://lot-logeman:8888/en/"><span data-no-translation
   =""><span class="trp-ls-language-name">EN</span></span></a></li></ul></div>`
 * It’s important that the toggled languages has an other (active) color then the
   unselected language.
 * Thanks a lot!
    -  This reply was modified 4 years, 12 months ago by [Sharp-Image](https://wordpress.org/support/users/sharp-image/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Use pages instead category in breadcrumb](https://wordpress.org/support/topic/use-pages-instead-category-in-breadcrumb/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/use-pages-instead-category-in-breadcrumb/#post-14321589)
 * Fixed with this setup:
 * `add_filter( ‘wpseo_breadcrumb_links’, ‘yoast_seo_breadcrumb_append_link’ );
 * function yoast_seo_breadcrumb_append_link( $links ) {
    global $post;
 *  if ( is_single( array( 216, 327, 215, 536, 535 ) ) ){
    $breadcrumb[] = array(‘
   url’ => site_url( ‘/diensten/’), ‘text’ => ‘diensten’, ); array_splice( $links,
   1, -2, $breadcrumb ); }
 *  if ( is_single( array( 238) ) ){
    $breadcrumb[] = array( ‘url’ => site_url( ‘/
   team/’), ‘text’ => ‘team’, );
 *  array_splice( $links, 1, -2, $breadcrumb );
    }
 *  return $links;
    }
 * Thanks a lot for this breadcrumb post setup!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Use pages instead category in breadcrumb](https://wordpress.org/support/topic/use-pages-instead-category-in-breadcrumb/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/use-pages-instead-category-in-breadcrumb/#post-14321530)
 * This one works perfect: [https://gist.github.com/amboutwe/ea0791e184668a5c7bd7bbe357c598e9#file-yoast_seo_breadcrumb_append_link-php](https://gist.github.com/amboutwe/ea0791e184668a5c7bd7bbe357c598e9#file-yoast_seo_breadcrumb_append_link-php)
   
   Im only searching for a solution that let post types in a specific group ending
   on a specific page. With the example above you can let multiple post types end
   on a specific url page. How can I give up multiple /url/ structures? Tried: `'
   url' => site_url( '/diensten/', '/team/'),`
 * thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] User roles on html tag](https://wordpress.org/support/topic/user-roles-on-html-tag/)
 *  Thread Starter [Sharp-Image](https://wordpress.org/support/users/sharp-image/)
 * (@sharp-image)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/user-roles-on-html-tag/#post-14313007)
 * Thanks for your feedback.
    Also not with the pro version? Cause I see conditions
   on blocks.

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/sharp-image/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/sharp-image/replies/page/2/?output_format=md)