Forum Replies Created

Viewing 15 replies - 1 through 15 (of 30 total)
  • Thread Starter ruseau

    (@ruseau)

    Hi,

    It’s was one option in my plugin Autoptimize who was generated the conflict

    Thanks !

    Thread Starter ruseau

    (@ruseau)

    Hi,

    Isn’t an error, because google see the pages but in the rich snippet they aren’t see as product

    All my product page are indexed but not reconize as product, in 2021 all my products was reconized as product in the search console and since october and even now every time i do test it’s show me my product as a normal page

    no more price
    no more stock
    no more reviews the SERP

    Regards,

    Thread Starter ruseau

    (@ruseau)

    Hi,

    Can you check again my URL for see if it’s resolve, when i look un the code cusreview appear and i don’t see any trouble.
    I did updates and desactiveted few plugins

    Also, in my search console all my reviews and products have disappear of the list.. and imposible to understand why…

    Regards,

    Thread Starter ruseau

    (@ruseau)

    Bonjour, serait-il possible de me fournir un email, afin que je puisse pour faire parvenir un accès au site directement ?

    Cordialement

    Forum: Plugins
    In reply to: [WP Store Locator] CSS Help
    Thread Starter ruseau

    (@ruseau)

    Hello,

    Dou you have any shortcode for hide the store information on the marker and make him clickable with the URL description link ?

    Best Regards

    Forum: Plugins
    In reply to: [WP Store Locator] CSS Help
    Thread Starter ruseau

    (@ruseau)

    Hi, thanks for all your answer it was very helpfull

    my client would like to hide all the store information in the pin and make him clickable (in one click, not open the box description) for open the URL in the description in a new window (example: a Google business link)

    Is possible to have a code to put in the function.php for doing that ?

    Best Regards

    Forum: Plugins
    In reply to: [WP Store Locator] CSS Help
    Thread Starter ruseau

    (@ruseau)

    Great I edited all, it’s look better now

    I have 2 more question

    1. how can I make disappear the Start location marker (I don’t need to use it)

    2. “Hide the opening hours?” is unselected but I can’t see on my store the hours
    How make them appear and where it will appear ?

    Best Regards,

    Thread Starter ruseau

    (@ruseau)

    Hi, thanks for your answer

    I tried to deactivate cache plugin, my theme setting for minify the js, and few plugins but nothing changed the issue.

    the “Same web property ID is tracked twice.” was also with your plugin, i don’t know why, i’m only using 1 plugin for GA

    So I’ve downloaded another plugin and I can use 2 tracking the new and old Google Analytics at the same time.

    It was working at the first time so i will keep it

    Regards

    Thread Starter ruseau

    (@ruseau)

    Thanks for the answer,
    After few researches i find a solution who work for me

    /**
     * @snippet       Add new textarea to Product Category Pages - WooCommerce
     * @how-to        Get CustomizeWoo.com FREE
     * @author        Rodolfo Melogli
     * @compatible    WooCommerce 3.9
     * @donate $9     https://businessbloomer.com/bloomer-armada/
     */  
     
    // ---------------
    // 1. Display field on "Add new product category" admin page
     
    add_action( 'product_cat_add_form_fields', 'bbloomer_wp_editor_add', 10, 2 );
     
    function bbloomer_wp_editor_add() {
        ?>
        <div class="form-field">
            <label for="seconddesc"><?php echo __( 'Second Description', 'woocommerce' ); ?></label>
           
          <?php
          $settings = array(
             'textarea_name' => 'seconddesc',
             'quicktags' => array( 'buttons' => 'em,strong,link' ),
             'tinymce' => array(
                'theme_advanced_buttons1' => 'bold,italic,strikethrough,separator,bullist,numlist,separator,blockquote,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,separator,undo,redo,separator',
                'theme_advanced_buttons2' => '',
             ),
             'editor_css' => '<style>#wp-excerpt-editor-container .wp-editor-area{height:175px; width:100%;}</style>',
          );
     
          wp_editor( '', 'seconddesc', $settings );
          ?>
           
            <p class="description"><?php echo __( 'This is the description that goes BELOW products on the category page', 'woocommerce' ); ?></p>
        </div>
        <?php
    }
     
    // ---------------
    // 2. Display field on "Edit product category" admin page
     
    add_action( 'product_cat_edit_form_fields', 'bbloomer_wp_editor_edit', 10, 2 );
     
    function bbloomer_wp_editor_edit( $term ) {
        $second_desc = htmlspecialchars_decode( get_woocommerce_term_meta( $term->term_id, 'seconddesc', true ) );
        ?>
        <tr class="form-field">
            <th scope="row" valign="top"><label for="second-desc"><?php echo __( 'Second Description', 'woocommerce' ); ?></label></th>
            <td>
                <?php
              
             $settings = array(
                'textarea_name' => 'seconddesc',
                'quicktags' => array( 'buttons' => 'em,strong,link' ),
                'tinymce' => array(
                   'theme_advanced_buttons1' => 'bold,italic,strikethrough,separator,bullist,numlist,separator,blockquote,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,separator,undo,redo,separator',
                   'theme_advanced_buttons2' => '',
                ),
                'editor_css' => '<style>#wp-excerpt-editor-container .wp-editor-area{height:175px; width:100%;}</style>',
             );
     
             wp_editor( $second_desc, 'seconddesc', $settings );
             ?>
           
                <p class="description"><?php echo __( 'This is the description that goes BELOW products on the category page', 'woocommerce' ); ?></p>
            </td>
        </tr>
        <?php
    }
     
    // ---------------
    // 3. Save field @ admin page
     
    add_action( 'edit_term', 'bbloomer_save_wp_editor', 10, 3 );
    add_action( 'created_term', 'bbloomer_save_wp_editor', 10, 3 );
     
    function bbloomer_save_wp_editor( $term_id, $tt_id = '', $taxonomy = '' ) {
       if ( isset( $_POST['seconddesc'] ) && 'product_cat' === $taxonomy ) {
          update_woocommerce_term_meta( $term_id, 'seconddesc', esc_attr( $_POST['seconddesc'] ) );
       }
    }
     
    // ---------------
    // 4. Display field under products @ Product Category pages 
     
    add_action( 'woocommerce_after_shop_loop', 'bbloomer_display_wp_editor_content', 5 );
     
    function bbloomer_display_wp_editor_content() {
       if ( is_product_taxonomy() ) {
          $term = get_queried_object();
          if ( $term && ! empty( get_woocommerce_term_meta( $term->term_id, 'seconddesc', true ) ) ) {
             echo '<p class="term-description">' . wc_format_content( htmlspecialchars_decode( get_woocommerce_term_meta( $term->term_id, 'seconddesc', true ) ) ) . '</p>';
          }
       }
    }
    Forum: Plugins
    In reply to: [SVG Support] Show Title
    Thread Starter ruseau

    (@ruseau)

    Hi,

    You was right when i’ve open my SVG in my Browser it’s wasn’t working too

    the weird think is i had to put my title like this in my SVG :

    <a class="amap" title="Itapúa" href="mywebsite"><title id="PY-7">Itapúa</title><path ..........

    With a < title > because the < a title=”” > wasn’t working
    It’s the right think to do ? I saw many website with the title with the < a >
    but i don’t understand how to make appear the title on hover in CSS

    Regards

    Thread Starter ruseau

    (@ruseau)

    Hi,

    yes i would like to have the posibility to export in the first time my products commissions

    (i don’t know what is possible : “commission total” or the detail of “rule” “valor” “com”)

    that the problem i’m using on the product : fixed / porcentage

    and also the global rule or the store rule

    Regards

    Thread Starter ruseau

    (@ruseau)

    Sorry for my mistake, i don’t paid for the support but for plugins :

    WooCommerce Frontend Manager – Ultimate – Upto 2 Sites for 1 Year – $49 × 1
    WooCommerce Frontend Manager – Product HUB – Upto 2 Sites for 1 year – $11 × 1

    there is a way to have the solution from you ?

    Best regards

    Thread Starter ruseau

    (@ruseau)

    Hi,

    yes the first code is working, but i was trying to find a solution for use part of this code for generate the export and if it’s possible the import also.

    i’m paying for the support and i’m also ready to paid an extra for having the solution, it’s very important for me to have it

    Best Regards

    Thread Starter ruseau

    (@ruseau)

    Hi,

    Can you help me again with this ?

    i’ve starting to write the code for generate the Export but i’m not sure that it will work

    function add_export_column( $columns ) {
    	$columns['commission_rule'] = 'Commission Rule';
    	$columns['product_commission'] = 'Product Commission';
    	return $columns;
    }
    add_filter( 'woocommerce_product_export_column_names', 'add_export_column' );
    add_filter( 'woocommerce_product_export_product_default_columns', 'add_export_column' );
    function add_export_data_commission_rule( $value, $product ) {
    	$value = wcfmmp_get_product_commission_rule( $product->get_id() );
    	return $value;
    }
    add_filter( 'woocommerce_product_export_product_column_commission_rule', 'add_export_data_commission_rule', 10, 2 );
    function add_export_data_product_commission( $value, $product ) {
    	$value = wcfmmp_get_commission_cost( $product->get_id() );
    	return $value;
    }
    add_filter( 'woocommerce_product_export_product_column_product_commission', 'add_export_data_product_commission', 10, 2 );

    i’ve find the way to show com in the product creation page, and i’m 99% sure that i can use this code for find the inforation :
    but i need you’re help for finalize it…

    /* show com */
    add_action( 'after_wcfm_products_manage_pricing_fields', function( $product_id ) {
    global $WCFM, $WCFMmp;
    echo '<p class="description" style="color:#f86c6b; font-size:15px;">(Solo para producto simple) Su ganancia sobre la venta: ';
    if( $product_id ) {
    $product = wc_get_product( $product_id );
    $regular_price = $product->get_regular_price();
    $sale_price = $product->get_sale_price();
    $commission_rule = $WCFMmp->wcfmmp_product->wcfmmp_get_product_commission_rule( $product_id );
    if( $sale_price ) {
    $item_commission = $WCFMmp->wcfmmp_commission->wcfmmp_generate_commission_cost( $sale_price, $commission_rule );
    } else {
    $item_commission = $WCFMmp->wcfmmp_commission->wcfmmp_generate_commission_cost( $regular_price, $commission_rule );
    }
    echo wc_price( $item_commission );
    } else {
    echo "Publique el producto para ver este informacion";
    }
    echo "</p>";
    }, 9 );'

    Regards

    • This reply was modified 5 years, 9 months ago by ruseau.
    Thread Starter ruseau

    (@ruseau)

    Hi,

    i did the upadte and the problem is still here

    Can you help me ?

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