Forum Replies Created

Viewing 15 replies - 1 through 15 (of 32 total)
  • Thread Starter MoiMM

    (@moimm)

    Thx for you’re answer mobilefox,

    ??

    Thread Starter MoiMM

    (@moimm)

    Thx a lot Benjamin for your very fast answers !
    I have made the last WP update for v4 (4.9.19) and all work fine ! ??

    Thread Starter MoiMM

    (@moimm)

    Hoops ! I have made the update (maybe v1.5.2 if my memory is good) in the admin but it was not the last version that is on www.remarpro.com (3.18).
    But now with “the “real” last version i have this error when the plugin is actived :

    Fatal error: Call to undefined function get_post_types_by_support() in /homepages/38/d290053911/htdocs/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_block/package.module.nextgen_block.php on line 46

    ??

    • This reply was modified 2 years, 10 months ago by MoiMM.
    Thread Starter MoiMM

    (@moimm)

    Oui j’ai vidé le cache à chaque fois … et j’ai testé avec une page en “navigation privée”.

    Je vous envois par mail un accès admin…

    Thread Starter MoiMM

    (@moimm)

    Merci encore pour la réponse rapide Amauri,

    J’ai tout testé, j’ai désactivé toutes les options de WP Rocket concernant les .js, mais rien n’y fait.

    Le seul moment où j’ai le bandeau patissier c’est quand le plugin WP Rocket est désactivé ! ??

    C’est ballot !

    Thread Starter MoiMM

    (@moimm)

    Merci Amauri pour cette réponse rapide

    Il y a la possibilité d’exclure des js du chargement différé
    (https://fr.docs.wp-rocket.me/article/981-exclure-fichiers-js-chargement-differe) mais pour moi cela ne fonctionne pas … ou j’ai pas fait la bonne manip’

    Je vais voir si je peux désactiver cette concaténation … ??

    Thread Starter MoiMM

    (@moimm)

    Bon ben test abrégé prématurément … Impossible d’activer le plugin …
    > message d’erreur :

    “Fatal error: Class ‘SoapClient’ not found in /home/photographik/public_html/wp-content/plugins/colissimo-delivery-integration/includes/WC-gateway-colissimo-auto.php on line 377”

    ??

    Thread Starter MoiMM

    (@moimm)

    Hi bis ??

    Thx a lot Pavel for your quick answer !

    I stay one eye on your great plugin !
    Probably a featured plugin very soon ! ??
    Nice job !

    Same issue for me !

    Impossible to use this plugin if that donc’t work with shortcodes ! ??

    There’re a developper here ? O_o

    Same problem with last version on my test website in french !!!?!

    Thread Starter MoiMM

    (@moimm)

    Hello again,

    I have made the last update (v 3.7) and i have always same issues…
    But after most search on web and see and read your wordpress plugin page, i’m not sure…

    There’re a lot of differents screenshot on all different article and now i don’t know if somme feature are or not on your last version.

    Ex : Where’re the tool for Edit the robots.txt and .htaccess files ?

    I must find 3 links in tool section … It’s that !?!

    For to be sure i have made a quick sceencast where you can see my installed plugins and a lot of different Yoast Sections and differents setup !

    Maybe is the best solution to know if there’re really a issue or all is completely normal ! ??

    You can see the screencast video here > https://dl.dropboxusercontent.com/u/166318/Recording%20%232.mp4

    Best regards,

    Stephane

    Hi
    (Sorry i’m french and my english is very bad) ??

    I have the same “issue” with a (maybe too complex ?) code that use with WC Vendors plugin (for remove all” Sold by)

    // Put this in your themes functions.php
    // Remove all existing actions and filters
    remove_action( 'woocommerce_after_shop_loop_item', 	array( 'WCV_Vendor_Shop', 'template_loop_sold_by'), 9, 2);
    remove_filter( 'woocommerce_get_item_data', 		array( 'WCV_Vendor_Cart', 'sold_by' ), 10, 2 );
    remove_action( 'woocommerce_product_meta_start', 	array( 'WCV_Vendor_Cart', 'sold_by_meta' ), 10, 2 );
    remove_filter( 'woocommerce_order_product_title', 	array( 'WCV_Emails', 'show_vendor_in_email' ), 10, 2 );
    remove_action( 'woocommerce_add_order_item_meta', 	array( 'WCV_Vendor_Shop', 'add_vendor_to_order_item_meta'), 10, 2 );
    remove_action( 'woocommerce_after_shop_loop_item',  array( $wcvendors_pro->wcvendors_pro_store_controller, 'loop_sold_by' ), 8  );
    remove_action( 'woocommerce_product_meta_start',  	array( $wcvendors_pro->wcvendors_pro_store_controller, 'product_sold_by' ), 8 );
    remove_filter( 'woocommerce_get_item_data',  		array( $wcvendors_pro->wcvendors_pro_store_controller, 'cart_sold_by' ), 8, 2 );
    // Hook into the product loop
    add_action( 'woocommerce_after_shop_loop_item', 'custom_loop_sold_by', 9 );
    function custom_loop_sold_by($product_id) {
    
    	$vendor_id = WCV_Vendors::get_vendor_from_product( $product_id );
    
    	if ( WCV_Vendors::is_vendor( $vendor_id) ) { 
    
    		$shop_url 	=  '';
    		$store_id 	= WCVendors_Pro_Vendor_Controller::get_vendor_store_id( $vendor_id );
    		$sold_by 		= apply_filters( 'wcv_loop_sold_by',
    			array(
    				'product_id'		=> $product_id,
    				'vendor_id'			=> $vendor_id,
    				'shop_url' 			=> get_the_permalink( $store_id ),
    				'shop_name'			=> WCV_Vendors::get_vendor_sold_by( $vendor_id ),
    				'wrapper_start'		=> '<small class="wcv_sold_by_in_loop">',
    				'wrapper_end'		=> '</small><br />',
    				'title'				=> __( 'Sold by: ', 'wcvendors-pro' )
    			)
    		);
    		echo $sold_by[ 'wrapper_start' ];
    		echo $sold_by[ 'title' ] .'<a href="'.$sold_by[ 'shop_url' ].'">'. $sold_by[ 'shop_name' ] .'</a>';
    		echo $sold_by[ 'wrapper_end' ];
    	}
    } //custom_loop_sold_by()
    // Hook into the cart data
    add_filter( 'woocommerce_get_item_data', 'custom_cart_sold_by', 10, 2 );
    function custom_cart_sold_by( $values, $cart_item ) {
    	$vendor_id = $cart_item[ 'data' ]->post->post_author;
    	if ( WCV_Vendors::is_vendor( $vendor_id ) ) {
    		$is_vendor 	= WCV_Vendors::is_vendor( $vendor_id );
    		$store_id 	= $is_vendor ? WCVendors_Pro_Vendor_Controller::get_vendor_store_id( $vendor_id ) : 0;
    		$shop_url 	= ( $store_id 	!= 0 ) ? get_the_permalink( $store_id ) : '';
    		$sold_by 	= '';
    		if ( $is_vendor ) {
    			$sold_by = sprintf( '<a href="%s" target="_TOP">%s</a>', $shop_url, WCV_Vendors::get_vendor_sold_by( $vendor_id ) );
    		} else {
    			$sold_by =  get_bloginfo( 'name' );
    		}
    
    		$values[] = array(
    			'name' => apply_filters( 'wcv_cart_sold_by', __( 'Sold by', 'wcvendors-pro' ) ),
    			'display' => $sold_by,
    		);
    		return $values;
    	}
    	return $values;
    } // custom_cart_sold_by()
    // Hook into the single product meta template
    add_action( 'woocommerce_product_meta_start', 'custom_product_sold_by_meta', 10, 2 );
    function custom_product_sold_by_meta() {
    	$vendor_id = get_the_author_meta( 'ID' );
    
    	if ( WCV_Vendors::is_vendor( $vendor_id ) ) {
    		$shop_url 	=  '';
    		$store_id 	= WCVendors_Pro_Vendor_Controller::get_vendor_store_id( $vendor_id );
    		$sold_by 		=  array(
    				'vendor_id'			=> $vendor_id,
    				'shop_url' 			=> get_the_permalink( $store_id ),
    				'shop_name'			=> WCV_Vendors::get_vendor_sold_by( $vendor_id ),
    				'wrapper_start'		=> '<small class="wcv_sold_by_in_loop">',
    				'wrapper_end'		=> '</small><br />',
    				'title'				=> __( 'Sold by: ', 'wcvendors-pro' )
    		);
    		echo $sold_by[ 'wrapper_start' ];
    		echo $sold_by[ 'title' ] .'<a href="'.$sold_by[ 'shop_url' ].'">'. $sold_by[ 'shop_name' ] .'</a>';
    		echo $sold_by[ 'wrapper_end' ];
    	}
    } // custom_product_sold_by_meta()

    Best regards,

    ??

    Same problem !

    I have install the postman plugin (in 5 mn) and all my test work fine now !

    It’s a very nice plugin !

    Thread Starter MoiMM

    (@moimm)

    Issue solved !

    It’s just a problem with ” in the code !
    The form code come to a copie/past and this caractere ” made the issue.

    ??

    Thread Starter MoiMM

    (@moimm)

    WP_DEBUG actived (on True)

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