Digital experiences for all disciplines
Forum Replies Created
-
-
Hi,
After adding all those changes, open up \woocommerce\loop\add-to-cart.php and in line #59
you saw a line like this,
echo apply_filters( 'woocommerce_loop_add_to_cart_link', sprintf('<a href="%s" rel="nofollow" data-product_id="%s" data-product_sku="%s" class="%s product_type_%s" data-added_text="%s">%s</a>', esc_url( $link['url'] ), esc_attr( $product->id ), esc_attr( $product->get_sku() ), esc_attr( $link['class'] ), esc_attr( $product->product_type ), $added_text, $link['label'] ), $product, $link);
change that to.
?> <a href="<?php the_permalink(); ?>" class="details">Read More.</a> <?php
You can do that all in the Child themes. 🙂
Let us know,
Thanks,
laranz.Hi,
You need to edit this file \swift-framework\widgets\widget-comments.php in line #33 onwards they for a $args array, in that you need to give the “post_author__not_in” array of author ID’s you want to exclude the comments. For more refer this official codex page: http://codex.wordpress.org/Function_Reference/get_comments
Let us know,
Thanks,
laranz.Hi,
1. Added http://take.ms/93WcC I also copy that file named, oldsfwoocommerce.php you can compare those files also 🙂
2. Sorry it needs a lot of code changes, we can’t do customizations in support. So I suggest you to hire someone to do so. ( If you found some feature like in the demo, let me know )Let us know,
Thanks,
laranz.Hi Neth,
I forward this to one of my colleague to take a look.
Let us know,
Thanks,
laranz.January 9, 2015 at 8:54 am in reply to: More horizontal space for nav items and less for logo #140266Hi,
I forward this to one of my colleague to take a look at the issue.
Let us know,
Thanks,
laranz.Hi,
Try this Custom CSS?
.gallery-item { width: 21%; }
If you don’t wanna reduce the width means, you can reduce the margin left and right of gallery-item, it will reduce and make the gallery column like you want. 🙂
Let us know,
Thanks,
laranz.Hi,
Did you try disable the Gallery style override in Theme Options ( Visit Theme Options, and search for gallery and turn off the first option ) and let me know.
Thanks,
laranz.Hi,
Then pass me the FTP Login details, make sure you tick the private reply. Also, what is the URL of the site for the WP Login.
Let us know,
Thanks,
laranz.Hi,
Did you contact WPML about this character encoding issues over the translated string?
Let us know,
Thanks,
laranz.Hi,
In Which browser and OS, for me it looks okay in Win 8.1 and Firefox.
Let us know,
Thanks,
laranz.Hi George,
He will reply to this thread asap 🙂 I already forward this thread to him.
Let us know,
Thanks,
laranz.January 8, 2015 at 10:26 pm in reply to: More horizontal space for nav items and less for logo #140204Hi,
So before adding the language switcher the CSS I gave works nice? If so, play with the % values to get it right after adding the WPML.
Let us know,
Thanks,
laranz.Hi,
Remove the code, and the white page will be back to normal, and pass me the WP Login details in a private reply, I will try that for you. Also, Install a plugin named “WPIDE” for code edits.
Let us know,
Thanks,
laranz.Hi,
After putting the code like the above screenshot, not even the “Trackbacks” heading shown? Try remove the if statement and try to put on the same place,
<h3>Trackbacks</h3> <ol> <?php foreach ($comments as $comment) : ?> <?php $comment_type = get_comment_type(); ?> <?php if($comment_type != 'comment') { ?> <li><?php comment_author_link() ?></li> <?php } ?> <?php endforeach; ?> </ol>
Make sure that posts have trackbacks, We also wait for Ed’s reply. 🙂
Let us know,
Thanks,
laranz.Hi,
1. If so you need to rewrite this function named “sf_wishlist_button” found on \wp-content\themes\cardinal\swift-framework\core\sf-woocommerce.php alter the
<i class="ss-star">
word and give your own words in that place on line #275 or you can copy that function and alter the changes and put that in the child theme’s functions.php to save the change from updates 🙂
2. You can enable the sidebar in the category product pages and use the Woocommerce layered nav widget to display filter options.
4. You can try to change the heading style of page Heading in Theme Options -> Woocommerce Options -> Shop Options -> WooCommerce Page Heading StyleLet us know,
Thanks,
laranz. -