Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle
Search Results for 'language'
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Few codes required
December 28, 2016 at 1:26 pm #1263862. The theme doesn’t control that link. It’s a woocommerce link to the shop page. You would need to use your woocommerce multilingual tools to set the shop page for each language and it would have to be the woocommerce multilingual plugin that would control changing that link per language on the account page.
Ben
In forum: Pinnacle ThemeDecember 28, 2016 at 1:06 pm #126375Hey,
In your theme options > home slider. select the “shortcode entry” option. Then add your default language slider into the shortcode area. Next go to string translations area and you should see the option to set a shortcode for that area for your other languages.Ben
Hi Hannah, hi Ben,
my site is coming to go online. I now have a multi language site and tried to setup a full-screen homepage slider (*Login to see link to/de/hauptseite/)
This works with my german text on it. Now I’ve copied the slider definition and modified the text to english and to the english links. (*Login to see link to/en/homepage/)But I haven’t found a solution to give the english homepage a different slider code. I’ve tried it even in the homepage options and added the slider short code into Overide and use a Shortcode Slider: [kadence_slider_pro id=”3″]
Slider with ID 2 is the german one (the text on the slide begins with “Direkt zum”) and slider with the ID 3 has the english text beginning with “Directly to the”.
What’s my mistake? Can’t I mix the slider definition in the theme options with the option for each page?
Marc
In forum: Virtue ThemeIn reply to: carousel problem
Hmm, when I log in to your site I can see this issue, but when I log back out it’s gone again. I’ll keep looking into this, but I’ll also flag this thread for the developer to look into when he gets on.
You can change your read more text from Theme Options > Language Settings.Hannah
In forum: Virtue ThemeTopic: Few codes required
Hi Ben,
Could you please give me the css codes for the following issues.
1. Language switcher in footer column 4, needs to be centered in all devices.
2. On the my account page dutch > orders (bestellingen) > we have a tab of GA WINKELEN at the right … when thats clicked its going to the english homepage… I would like it to go to the dutch home page.In forum: Membership ForumsIn reply to: RTL layout
Hey Sherif,
In order to get your site configured right to left, it will require CSS.
I suggest first trying these steps:
https://codex.wordpress.org/Right-to-Left_Language_SupportIt’s likely that further CSS will be required for certain elements on the page, but let us know when you run into those and we’ll be happy to help get you the correct CSS.
-Kevin
In forum: Virtue Theme1. Still awaiting wpml update.
2. I’m still waiting for wpml update, but in the meantime I tried downgrading wordpress to an earlier version, and while all the sidebar menus came back; all my cyclone sliders at the top of my category pages disappeared in both languages. The codes were just stripped off the category pages.
I did put them manually all back, but not sure why that happened…. Could you throw some light on what can be done in such a case to restore it immediately. We have a lot of sliders on the site.In forum: Virtue Theme1. I cleared the cache in wpml section, as suggested by the wpml supporters and saw some portions of the variations showing up like you mentioned.
They also requested me to delete the entire translation for the product and redo it again using the wpml editor just to check out…. but now it doesn’t show the product price in the second language and also the stock. There seems to be something going wrong after the wordpress update.
2. The sidebar menus are not syncing too…. I contacted wpml with this issue too…. awaiting their input.
You will probably be able to see it now if you login to our test site.
In forum: Pinnacle ThemeTopic: about translation
In forum: Membership ForumsTopic: RTL layout
In forum: Virtue ThemeIn reply to: Virtue theme – product custom tab 3 not translating
Yes, this does solve the issue.
I just thought that maybe you knew a way to have it show up when I open the product translation option through : Woocommerce > Woocommerce multilingual > Products > edit 2nd language product. Here I can see both the english and dutch text on the same screen. Previously I had all the tabs (except the virtue tab 3 ) showing in this editing area. Any idea how I can make it show up here?
In forum: Virtue ThemeHello!
I ve got this site *Login to see link
But language switcher on topbar doenst show on mobile?
How could i enable itIn forum: Virtue ThemeIn reply to: Virtue theme – product custom tab 3 not translating
December 20, 2016 at 10:35 am #125719What you did is what I’m saying. You should now have the tabs in each language when your editing the product correct?
Ben
In forum: Virtue ThemeHi Ben,
1. I have noticed that the product variations don’t show up in the second language dropdowns, but they do show up in the additional information tab below. The attibutes do show up though with an empty drop downmenu next to them. What can I do to solve the issue?2. I have also noticed that after updating wordpress to 4.7, some of my side menus in the product category areas have disappeared. Its not consistent too. Sometimes they are available in english, and not in the dutch version; and vice versa ; sometimes available in both and sometimes, not available in both. I couldn’t seem to find the issue yet. Any clue why this could be happening?
Your input will be highly appreciated.
In forum: Virtue ThemeIn reply to: Virtue theme – product custom tab 3 not translating
I didn’t really understand how to make sure the meta content is set on a language by language basis. Could you please elaborate?
I did manage to solve the issue at present by changing a settings in the Woocommerce > woocommerce multilingual > settings > product translation interface > Native WooCommerce product editing screen. This gives me an option to add the virtue tab 3 content.
But if an easier and better option is possible, I would be happy to try it.In forum: Virtue ThemeHi Ben, thanks for your quick reply.
Yoast SEO would be a solution in case nothing else works, but I think it’s just a small matter and it would be great to solve it with custom code.Now this is the code I use in functions.php of the Virtue child theme:
function fb_opengraph() { global $post; if(is_product_category( 'porzellan' )) { if(has_post_thumbnail($post->ID)) { $img_src = wp_get_attachment_image_src(get_post_thumbnail_id( $post->ID ), 'medium'); } else { $img_src = get_stylesheet_directory_uri() . '/img/opengraph_image.jpg'; } if($excerpt = $post->post_excerpt) { $excerpt = strip_tags($post->post_excerpt); $excerpt = str_replace("", "'", $excerpt); } else { $excerpt = get_bloginfo('description'); } ?> <meta property="og:title" content="<?php echo the_title(); ?>"/> <meta property="og:description" content="<?php echo $excerpt; ?>"/> <meta property="og:type" content="product"/> <meta property="og:url" content="<?php echo the_permalink(); ?>"/> <meta property="og:site_name" content="<?php echo get_bloginfo(); ?>"/> <meta property="og:image" content="<?php echo $img_src; ?>"/> <meta name="description" content="custom meta description test text"/> <?php } else { return; } } add_action('wp_head', 'fb_opengraph', 5); function doctype_opengraph($output) { return $output . ' xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"'; } add_filter('language_attributes', 'doctype_opengraph');The Opengraph tags work fine, but xmlins declarations (which use the language_attributes hook) and the normal meta description (which use wp_head hook just like the og-tags) doesn’t show up, and I have no clue why. First I just wanted to use header.php, but obviously the theme doesn’t use the file.
Thanks for your help!
In forum: Virtue ThemeIn reply to: Virtue theme – product custom tab 3 not translating
December 18, 2016 at 10:58 pm #125577That part is meta content. All you would need to do is make sure meta content is set on a language by language basis. Then when you switch languages on a product to translate the normal content you would fill in those boxes the same way.
Ben
In forum: Virtue ThemeTopic: language problems
Hi! I use the Virtue Pro theme with WooCommerce on this website: servuslighter.hu. On this website have some words which are in English rather than in Hungarian. I found these words in the language file of WooCommerce and these words are in Hungarian there but on the website these are in English.
How can I change these words into Hungarian?
Thanks, Eszter
In forum: Virtue ThemeHello,
I’m having difficulty getting the Woocommerce shipping calculator to add on the shipping fees in my website checkout page – *Login to see link
I’ve configured all the Woocommerce settings, including shipping zone info, etc. and I’ve also tried deactivating all plugins, except Woocommerce. All to no avail.
I’ve copied in the system report below and would be very grateful for any help you can give.
### WordPress Environment ###
Home URL: *Login to see link
Site URL: *Login to see link
WC Version: 2.6.9
Log Directory Writable: ✔
WP Version: 4.7
WP Multisite: –
WP Memory Limit: 128 MB
WP Debug Mode: –
WP Cron: ✔
Language: en_GB### Server Environment ###
Server Info: Apache
PHP Version: 5.6.28
PHP Post Max Size: 64 MB
PHP Time Limit: 30
PHP Max Input Vars: 1000
cURL Version: 7.38.0
OpenSSL/1.0.1eSUHOSIN Installed: ✔
MySQL Version: 5.6.33
Max Upload Size: 64 MB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔### Database ###
WC Database Version: 2.6.9
:
woocommerce_sessions: ✔
woocommerce_api_keys: ✔
woocommerce_attribute_taxonomies: ✔
woocommerce_downloadable_product_permissions: ✔
woocommerce_order_items: ✔
woocommerce_order_itemmeta: ✔
woocommerce_tax_rates: ✔
woocommerce_tax_rate_locations: ✔
woocommerce_shipping_zones: ✔
woocommerce_shipping_zone_locations: ✔
woocommerce_shipping_zone_methods: ✔
woocommerce_payment_tokens: ✔
woocommerce_payment_tokenmeta: ✔
MaxMind GeoIP Database: ✔### Active Plugins (14) ###
Redux Framework: by Team Redux – 3.6.3
Anti-spam: by webvitaly – 4.3
Image Widget: by Modern Tribe
Inc. – 4.2.2Media Rename: by ShadowsDweller – 3.2.3
Ninja Forms – Layout & Styles: by The WP Ninjas – 1.2.3
Ninja Forms: by The WP Ninjas – 3.0.19
Really Simple SSL: by Rogier Lankhorst – 2.4.3
Responsive Lightbox: by dFactory – 1.6.10
Social Media Feather: by socialmediafeather – 1.8.2
UberMenu 2 – WordPress Mega Menu Plugin: by Chris Mavricos
SevenSpark – 2.4.0.3WooCommerce Stripe Gateway: by Automattic – 3.0.6
WooCommerce jQuery Cookie Fix: by Splashing Pixels (Roy Ho) – 1.0
WooCommerce: by WooThemes – 2.6.9
Yoast SEO: by Team Yoast – 4.0### Settings ###
Force SSL: –
Currency: GBP (£)
Currency Position: left
Thousand Separator: ,
Decimal Separator: .
Number of Decimals: 2### API ###
API Enabled: ✔
### WC Pages ###
Shop Base: #5084 – /shop
Basket: #5085 – /cart
Checkout: #5086 – /checkout
My Account: #5087 – /my-account### Taxonomies ###
Product Types: external (external)
grouped (grouped)
simple (simple)
variable (variable)### Theme ###
Name: Virtue – Premium
Version: 3.4.0
Author URL: *Login to see link
Child Theme: ❌ – If you’re modifying WooCommerce on a parent theme you didn’t build personally
then we recommend using a child theme. See: How to create a child themeWooCommerce Support: ✔
### Templates ###
Overrides: virtue_premium/woocommerce/archive-product.php
virtue_premium/woocommerce/content-product.php version 2.4.0 is out of date. The core version is 2.6.1
virtue_premium/woocommerce/content-product_cat.php version 2.4.0 is out of date. The core version is 2.6.1
virtue_premium/woocommerce/content-single-product.php
virtue_premium/woocommerce/loop/add-to-cart.php version 2.1.0 is out of date. The core version is 2.5.0
virtue_premium/woocommerce/loop/loop-end.php
virtue_premium/woocommerce/loop/loop-start.php
virtue_premium/woocommerce/loop/rating.php
virtue_premium/woocommerce/loop/sale-flash.php
virtue_premium/product-searchform.php version – is out of date. The core version is 2.5.0
virtue_premium/woocommerce/single-product/add-to-cart/external.php
virtue_premium/woocommerce/single-product/add-to-cart/grouped.php
virtue_premium/woocommerce/single-product/add-to-cart/simple.php
virtue_premium/woocommerce/single-product/add-to-cart/variable.php version 2.4.0 is out of date. The core version is 2.5.0
virtue_premium/woocommerce/single-product/product-image.php version 2.0.14 is out of date. The core version is 2.6.3
virtue_premium/woocommerce/single-product/product-thumbnails.php version 2.3.0 is out of date. The core version is 2.6.3
virtue_premium/woocommerce/single-product/related.php
virtue_premium/woocommerce/single-product/sale-flash.php
virtue_premium/woocommerce/single-product/title.php
virtue_premium/woocommerce/single-product/up-sells.php
virtue_premium/woocommerce/single-product.php
virtue_premium/woocommerce/taxonomy-product_cat.php
virtue_premium/woocommerce/taxonomy-product_tag.phpIn forum: Virtue Theme -
AuthorSearch Results


