Forum Replies Created

Viewing 15 posts - 106 through 120 (of 2,802 total)
  • Posted in:
  • in reply to: Disable comments in Cardinal, and blog display details. #147743
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    1. Use this in the Custom CSS.

    .masonry-items .blog-item h6, .masonry-items .post-date { color: red; } { color: red; }

    2. Can you list the issues you are facing after the update?
    3. Actually the logo will be fit in to the 4 columns, left and right respectively take 4 column of the total 12column layout.

    Let us know,

    Thanks,
    laranz.

    in reply to: SSL problems/ cart problems/ differnet issues #147742
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    1. I see currently your logo shows over https.
    2. Which product get that type of cart? I tried to add one and it went without any issue.
    3. Add this in the Custom CSS.

    .summary-top .product-navigation { display: none; }

    4. Where? In the screenshot there isn’t a VAT there, can you point me in the right URL?
    5. You can use this custom css,

    .quantity.buttons_added { display: none; }

    if it didn’t remove, just add an !important.

    Let us know,

    Thanks,
    laranz.

    in reply to: Random Carousel Orders #147739
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    For more query function, refer this codex docs: http://codex.wordpress.org/Class_Reference/WP_Query

    Let us know,

    Thanks,
    laranz.

    in reply to: Random Carousel Orders #147737
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi Mike,

    Try this, open up \wp-content\themes\dante\swift-framework\page-builder\builder\shortcodes\team-carousel.php in line #31 you saw a query formation, change that to this

    $args=array(
    'post_type' => 'team',
    'post_status' => 'publish',
    'team-category' => $category_slug,
    'posts_per_page' => -1,
    'ignore_sticky_posts'=> 1,
    'no_found_rows' => 1,
    'orderby' => 'rand'
    );

    Let us know,

    Thanks,
    laranz.

    in reply to: Blog Feature images not displaying correctly in readers #147120
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    Sure keep us updated about the issue.

    Let us know,

    Thanks,
    laranz.

    in reply to: 3 questions #147118
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi @ballisticone,

    No need to do any other steps, you can just read the documentation for that plugin for any additional options.

    Let us know,

    Thanks,
    laranz.

    in reply to: Modal text colour #147111
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    Try this,

    .lighttitle .spb-heading { color: white; }

    You need to target the “What we do” and “About us” right?

    Edit: Kyle beat me, you can use either of the Custom CSS 🙂

    Let us know,

    Thanks,
    laranz.

    in reply to: Blog Feature images not displaying correctly in readers #147097
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    1. Can you try this plugin nextgen-facebook ( https://wordpress.org/plugins/nextgen-facebook/ ) it helps for the facebook sharing issue.

    2. We don’t try blogvin and feedly before, and don’t know how it works. Can you just read its documentation or contact its support how they grab the feature image and excerpts?

    Let us know,

    Thanks,
    laranz.

    in reply to: Modal text colour #147092
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    Use the custom class without space like “lighttitle” and use this custom CSS.

    .lighttitle { color: white; }

    Let us know,

    Thanks,
    laranz.

    in reply to: Testimonial Slider Speed #147086
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    You can’t override it from the child theme, I forward this to our development team to add that in the Theme Options.

    Let us know,

    Thanks,
    laranz.

    in reply to: Why Thai fonts on Safari is smaller than Chrome? #147083
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    Can you try some other Google Font and look?

    Let us know,

    Thanks,
    laranz.

    in reply to: Removing bottom space just in mobile #146998
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi Nuno,

    1. Try this, add a Extra class name for that row, and use that class to hide the padding bottom of that row.
    2. and you have a spacer at that end, so for spacer click edit and choose Responsive Visibility -> Hidden on phone.

    It will do the trick.

    Let us know,

    Thanks,
    laranz.

    in reply to: Random Carousel Orders #146995
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    Sorry, I am confused while reading the screenshot. Can you explain in a brief with simple steps. If that possible I will solution.

    Let us know,

    Thanks,
    laranz.

    in reply to: Showing less products than possible #146993
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    Try this, open up \includes\swift-framework\sf-content-display\sf-products.php in line #365 – #371 you will find lines like this.

    $args = array(
    	'post_type' => 'product',
    	'post_status' => 'publish',
    	'product_cat' => $category,
    	'ignore_sticky_posts'   => 1,
    	'posts_per_page' => $item_count
    );

    Try to change that to,

    $args = array(
    	'post_type' => 'product',
    	'post_status' => 'publish',
    	'product_cat' => $category,
    	'ignore_sticky_posts'   => 1,
    	'posts_per_page' => $item_count,
            'columns' => 4
    );

    Didn’t test, but it will work fine, if not let me know.

    Let us know,

    Thanks,
    laranz.

    in reply to: Why Thai fonts on Safari is smaller than Chrome? #146989
    laranz – SUPPORT
    Member
    Post count: 3186

    Hi,

    I think there is a bug in Safari: https://code.google.com/p/chromium/issues/detail?id=449310 I maybe wrong too, I forward this to our developers for their opinions.

    Let us know,

    Thanks,
    laranz.

Viewing 15 posts - 106 through 120 (of 2,802 total)