Your account expired support, please renew to get your support.

Forum Replies Created

Viewing 10 posts - 41 through 50 (of 83 total)
  • Author
    Posts
  • in reply to: Add "Sort by name" to the sort options #35840
    Sgmonster
    Support Expired

    It’s weird, layout 1 is my default layout in claue option. even if I override to layout 1, i still don’t get the option to put the link in.

    in reply to: Add "Sort by name" to the sort options #35830
    Sgmonster
    Support Expired

    Hi Harry,

    I checked and I don’t have the option to put the link in neither

    Here are the code I have in Custom CSS

    .result-count-order {
    padding: 0 15px;
    }
    .filter-trigger:after {
    content: ‘Filter’;
    margin-left: 10px;
    }
    .product_meta {display: none;}
    @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min—moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) { .regular-logo { display: block; } .retina-logo { display: none; } }

    @media only screen and (max-width: 800px) { .jas-branding { display: none;}}
    .additional_information_tab, #tab-additional_information {
    display: none !important;
    }

    @media only screen and (max-width: 800px) {
    .wp-caption {
    width: 100% !important;
    }
    }
    .quickview-button {bottom: -10px; left: 0; width: 100%; opacity: 0; visibility: hidden; transition: all 0.1s;}
    .product-image:hover .quickview-button {bottom: 0; opacity: 1; visibility: visible;}
    .quickview-button a { background: #f2f2f2; transition: all 0.3s}
    .product-btn .btn-quickview {
    display: none;
    }
    .btn-quickview {
    margin: 0;
    padding: 0;
    }
    .quickview-button {
    z-index: 99;
    }

    in reply to: Add "Sort by name" to the sort options #35812
    Sgmonster
    Support Expired

    Hi Harry,

    I realize my products don’t have the “Featured video URL” under the tax class

    What could be the cause ?

     

    Thank you !

    Sgmonster
    Support Expired

    can you add this feature?    automatically adds a graphical “tag” to the picture.   See attached.

    Attachments:
    You must be logged in to view attached files.
    Sgmonster
    Support Expired

    Thanks.

    So, regarding the 1st question about the text above the footer, can you create a separate section above the footer  where I can add some additional text (not move the text from the top to the bottom.  It will be an entirely new section)

    The text i would like to add above the footer would be purely for SEO purposes and quite common in the industry.  See attached.

    Attachments:
    You must be logged in to view attached files.
    Sgmonster
    Support Expired

    thanks, but that probably won’t work.  The text i would like to add above the footer would be purely for SEO purposes.  Like in our bifocal section, I would write about bifocal sunglasses a little.

    I do have another question.  How can I add text in the very top of the home page on the black bar?
    See attached picture.

    Attachments:
    You must be logged in to view attached files.
    Sgmonster
    Support Expired

    okay, thanks.  I’ll check that.

    Regarding adding text above the footer,   I want to KEEP the description on top (either inside the banner, or below the banner)  rather than move it.   I am actually using the description text inside the banner and need to keep it there.

    I would like to add text to the bottom above the footer for more SEO (normally visitors dont read this portion much) Can you add that capability?

    thanks,

    Tom

    Sgmonster
    Support Expired

    Hello:  I need help.  I”m circling and can’t figure out how to do this.  None of my description is appearing in Google Search Results.   I am trying to follow these instructions, but I am confused.

    https://support.google.com/webmasters/answer/7489871?hl=en

    I installed the plugin, MetaTag Manager also, but haven’t been able to figure it out.

    Can you help?

    I have zero coding experience.

    Sgmonster
    Support Expired

    I see. okay.   Rather than move the text from top banner descripiton, Is there a way just to add text to the bottom of the pages (above the footer)?

    thanks,

    Tom

     

     

    Sgmonster
    Support Expired

    <h3>Code to add text above footer:    See Below…  Please confirm if this is correct.  This is what was written to another customer with same question.     thanks, Tom

    </h3>
    <h3>Please add more code to claue-child > functions.php</h3>
    —————————————————————————————————————————–

    function jas_claue_child_wc_page_head() {

    if ( ! cs_get_option( ‘wc-enable-page-title’ ) || ( class_exists( ‘WCV_Vendors’ ) && WCV_Vendors::is_vendor_page() ) ) return;

     

    $title = cs_get_option( ‘wc-page-title’ );

     

    $output = ‘

    ‘;

    if ( is_search() ) {

    $output .= ‘<h1 class=”mb__5 cw”>’ . sprintf(__( ‘Search Results for: %s’, ‘claue’ ), ‘<span>’ . get_search_query() . ‘</span>’ ) . ‘</h1>’;

    } elseif ( is_shop() ) {

    $output .= ‘<h1 class=”mb__5 cw”>’ . esc_html( cs_get_option( ‘wc-page-title’ ) ) . ‘</h1>’;

    $output .= ‘<p class=”mg__0″>’ . do_shortcode( cs_get_option( ‘wc-page-desc’ ) ) . ‘</p>’;

    } else {

    // Remove old position of category description

    remove_action( ‘woocommerce_archive_description’, ‘woocommerce_taxonomy_archive_description’, 10 );

    $output .= ‘<h1 class=”cw”>’ . single_cat_title( ”, false ) . ‘</h1>’;

    //$output .= do_shortcode( category_description() );

    add_action( ‘woocommerce_after_shop_loop’, ‘woocommerce_taxonomy_archive_description’, 40 );

    add_action( ‘woocommerce_after_shop_loop’, ‘woocommerce_product_archive_description’, 40 );

     

    }

    ob_start();

    $output .= ob_get_clean();

    $output .= ‘

    ‘;

     

    echo wp_kses_post( $output );

    }
    add_action( ‘woocommerce_before_main_content’, ‘jas_claue_child_wc_page_head’, 15 );

    —————————————————————————————————————
    and add below code to claue-child > style.css

    .term-description {

    display: block;

    width: 100%;

    max-width: 1170px;

    margin: 30px auto;

    }
    ————————————————————————————————————–
    <h3>Please add more code to claue > functions.php above the code for step 2</h3>
    /* move category description below products */

    add_action( ‘wp_head’, ‘remove_my_action’ );

    function remove_my_action(){

    remove_action( ‘woocommerce_before_main_content’, ‘jas_claue_wc_page_head’, 15 );

    }

    Attachments:
    You must be logged in to view attached files.
Viewing 10 posts - 41 through 50 (of 83 total)