Sharp-Image
Forum Replies Created
-
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.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
In reply to: [Mollie Payments for WooCommerce] Warning: call_user_func_array()Hi thanks,
Is this update working with the latest WP version?regards Bouke
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Warning: call_user_func_array()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
BoukeHi @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
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
In reply to: [Code Snippets] php error after installing pluginIssue is solved by updating absolute paths in the wp-config.php
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
Hi,
Thanks a lot, works perfect!Done, form can be found here:
https://conditional-fields-cf7.bdwm.be/form-tester/?hash=3e6ddf1ad58bf80c05630bc157f57536Thought that I must setup I nested group at some way but still not no what goes wrong here.
Thanks!
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.
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="https://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 3 years, 10 months ago by Sharp-Image.
Forum: Plugins
In reply to: [Yoast SEO] Use pages instead category in breadcrumbFixed 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
In reply to: [Yoast SEO] Use pages instead category in breadcrumbThis one works perfect: 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
In reply to: [User Role Editor] User roles on html tagThanks for your feedback.
Also not with the pro version? Cause I see conditions on blocks.