Digital experiences for all disciplines
Forum Replies Created
-
-
Hi,
I just went an extra mile, just for you 🙂
Add this in the functions.php
add_filter( 'add_to_cart_url', 'woo_more_info_link' ); function woo_more_info_link( $link ) { global $product; // switches link in all cases, i.e. in plugins $link = get_permalink( $product->id ); return $link; } /* replace add to cart text on button */ add_filter('add_to_cart_text', 'woo_custom_cart_button_text'); function woo_custom_cart_button_text() { return __('Read more', 'woocommerce'); }
Let us know,
Thanks,
laranz.December 17, 2014 at 8:42 pm in reply to: cart contact / shipping / return / faqs modal not translating after update #136407Hi,
I a extremely sorry for this, I don’t know how I missed this thread. Try this solution..
Try this updated .po file http://d.pr/f/13vUL/131Y41YF
In POEdit, go to Catalog > Update from POT file, and then select the new en_US.po file. That will update the references.
PS: Take backup of the old .po file, just in case 🙂
Let us know,
Thanks,
laranz.Hi,
I forward this thread to Kyle for you. I tried to solve the issue and not succeeded.
Let us know,
Thanks,
laranz.Hi,
1. Use this Custom CSS.
.single figure.media-wrap { display: none; }
2. Go to Settings -> Permalinks -> common settings -> Custom Structure = /blog/%postname%/
3. Great 😉
Let us know,
Thanks,
laranz.Hi,
Can you try this solution? http://www.swiftideas.com/forums/topic/having-problems-or-issues-with-xml-demo-content-upload-try-this-solution/ If that is also didn’t help means, I call ED to this thread to take a look.
Let us know,
Thanks,
laranz.December 17, 2014 at 8:20 pm in reply to: Youtube fullscreen icon doesnt work in video posts #136402Hi,
Open up wp-content\themes\dante\includes\sf-media.php in FTP and go to this line #45 you found a line like this
return '<div class="sf-video-wrap"><iframe itemprop="video" src="http://www.youtube.com/embed/'. $video_id[1] .'?wmode=transparent" width="'. $width .'" height="'. $height .'" ></iframe></div>';
Change that to
return '<div class="sf-video-wrap"><iframe itemprop="video" src="http://www.youtube.com/embed/'. $video_id[1] .'?wmode=transparent" width="'. $width .'" height="'. $height .'" allowfullscreen></iframe></div>';
I also, forward this to our developer to have a fix in the upcoming updates.
Let us know,
Thanks,
laranz.Hi,
Try this updated .po file http://d.pr/f/13vUL/131Y41YF
In POEdit, go to Catalog > Update from POT file, and then select the new en_US.po file. That will update the references.
PS: Take backup of the old .po file, just in case 🙂
Let us know,
Thanks,
laranz.Hi,
I translate those texts, now can you add this line
define ('WPLANG', 'en_US')
in wp-config.php?
Let us know,
Thanks,
laranz.This reply has been marked as private.Hi Hans,
It says like this, “FEL: Ogiltigt användarnamn. Glömt ditt lösenord?” Can you confirm? If I am in, I will try all these issues and let you know.
Let us know,
Thanks,
laranz.Hi,
You are welcome 😉
Let us know, if you have any other questions.
Thanks,
laranz.Hi,
Can you pass me the WP Login details in a private chat, so that we can check whats going wrong in that.
Make sure that is masonry style blog, and pagination off and the instagram settings are correctly given.
Let us know,
Thanks,
laranz.Hi,
What error it throws? Try increase this value to 256
define( 'WP_MEMORY_LIMIT', '96M' );
Let us know,
Thanks,
laranz.Hi,
If you want to add more column means, you need a bit of editing there in the code. Open up \wp-content\themes\cardinal\swift-framework\content\sf-post-detail.php in line #474 you saw the code block for related posts, that starting /* POST RELATED ARTICES
Alter the code like this: http://take.ms/jyUtt
Do that in a child theme for update proof 🙂
Let us know,
Thanks,
laranz.Hi David,
You can alter those font size using this Custom CSS.
.posts-type-bold .recent-post .details-wrap h3 { } .posts-type-bold .recent-post .post-date { } .posts-type-bold .recent-post .author { }
First is for the title, second is for the post date, and the last one is for the author.
or you mean the related articles title itself means, use this one.
.related-articles > h2 { }
Let us know,
Thanks,
laranz. -