Digital experiences for all disciplines
Forum Replies Created
-
-
February 6, 2015 at 8:42 am in reply to: Disable comments in Cardinal, and blog display details. #147743
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.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.Hi,
For more query function, refer this codex docs: http://codex.wordpress.org/Class_Reference/WP_Query
Let us know,
Thanks,
laranz.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.February 4, 2015 at 10:59 am in reply to: Blog Feature images not displaying correctly in readers #147120Hi,
Sure keep us updated about the issue.
Let us know,
Thanks,
laranz.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.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.February 4, 2015 at 10:36 am in reply to: Blog Feature images not displaying correctly in readers #147097Hi,
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.Hi,
Use the custom class without space like “lighttitle” and use this custom CSS.
.lighttitle { color: white; }
Let us know,
Thanks,
laranz.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.Hi,
Can you try some other Google Font and look?
Let us know,
Thanks,
laranz.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.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.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.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. -