Forum Replies Created
-
AuthorPosts
-
Hi!
Please try to use Codestyling instead: http://wordpress.org/plugins/codestyling-localization/
Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).Regards,
PeterHi bergzohar!
The contact form code can be found in wp-content\themes\enfold\framework\php\class-form-generator.php
Cheers!
PeterHey edenpra!
Versuche einmal folgenden Code in das Quick CSS Feld einzufügen
#header_main { z-index: 100 !important; }
Best regards,
PeterHey!
Maybe it’s a plugin conflict. Try to deactivate all third party plugins and check if the filter works afterwards.
Best regards,
PeterHi!
It’s not a bug but an intended behavior: https://kriesi.at/support/topic/portfolio-ui-elements-not-appearing/
However the next theme version will include a filter which helps the user to bypass the fullwidth slider check. With the next update you don’t need to hack the theme files but you can use following code (add it to functions.php) to bypass the checkadd_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1); function avia_remove_fullwidth_slider_check($settings) { $settings['is_fullwidth'] = false; return $settings; }
Cheers!
PeterHey toshe!
Please create us an admin account and post the login credentials as private reply – we’ll look into it.
Regards,
PeterHey!
I checked the media page and I noticed that your server blocks the access to the wp-content/uploads folder. I.e. you uploaded http://caminade.eu/wp-content/uploads/2013/11/ZB4B9098.jpg recently and when I try to open the image with the browser I get a 403 – Access Denied error. Please use a ftp client software (like filezilla) and change the folder permission of wp-content/uploads to 777.
Cheers!
PeterHi!
Great, glad you solved the issue :)
Cheers!
PeterHi!
I forwarded the request to the Magic Zoom support staff. They already helped other theme users with the plugin setup ( https://kriesi.at/support/topic/magic-zoom-for-woo-commerce-no-showing/ ) and I’m pretty sure they can help you too. Unfortunately the Magic Zoom script code is obfuscated and it’s not easily possible to find and debug the error for a third party developer.
Cheers!
PeterHi Adame!
Maybe you use a cache plugin which breaks the masonry script? Try to deactivate all third party plugins except WooCommerce and BBPress and check if the grid works afterwards.
Regards,
PeterHey caminadebikes!
Please create me an admin account and post the login credentials as private reply.
Cheers!
PeterHey DoGrinDigital!
We did not test it with our themes and if you can’t get it to work it’s probably incompatible. You can try to contact the plugin authors – maybe they can provide some help.
Regards,
PeterHi dmaca!
1) You can add a margin to the paypal button image. Use following code
.paypal_checkout_button img{ margin-top: 20px; }
If you want a completely different button position you need to contact the PayPal Express plugin author because this would require am extension code customization.
2) Yes, use following css code and insert it into the quick css field
.woocommerce-cart .cart-collaterals .cart_totals { width: 100%; }
Regards,
PeterHi!
But the code I posted here: https://kriesi.at/support/topic/breadcrumbs-with-portfolio/ does exactly the same because it removes the filter function which manipulates the breadcrumb trail with
$trail = apply_filters( ‘avia_breadcrumbs_trail’, $trail, $args );
So your code
//$trail = apply_filters( ‘avia_breadcrumbs_trail’, $trail, $args );
or my function here https://kriesi.at/support/topic/breadcrumbs-with-portfolio/ should give you the same result but the filter function can be used in a child theme file and you don’t need to hack the core theme files.
Best regards,
PeterHey Martin!
No, as far as I know this is not possible right now but I’ll mark this thread for Kriesi (feature request).
Regards,
PeterNovember 2, 2013 at 10:37 am in reply to: Adjusting the height of a Fulldwidth Easy Slider component (or alternatives) #183673Hi wieslander!
You can try to install this plugin: http://wordpress.org/plugins/simple-image-sizes/ and define a new thumbnail size (i.e. 1500x200px). Afterwards regenerate the thumbnails with: http://wordpress.org/plugins/regenerate-thumbnails/ and use the 1500×200 size instead of 1500×430 for the Easy Slider on the homepage.
Cheers!
PeterHey!
Open up enfold/includes/loop-page.php and replace
<?php if($slider->slidecount) echo $slider->display(); ?>
with
<?php if($slider->slidecount) echo $slider->display(); $description = get_post_field('post_content', get_post_thumbnail_id()); echo $description; ?>
You can use the “Description” field on the image attachment editor page (Media > Library > Edit) to save a description text.
Cheers!
PeterHi!
Please create us an admin account and post the login credentials as private reply.
Best regards,
PeterHi toastedpenguin!
You just need to assign the post to another category (category selection box on the right side of the post editor screen). At the moment the post is assigned to “Uncategorized”.
Cheers!
PeterNovember 2, 2013 at 10:07 am in reply to: Decrease vertical padding between text blocks in a 1/1 container? #183665Hey costabile4601!
Insert following code into the quick css field and reduce the margin-top value (i.e. to 20px).
body .column-top-margin { margin-top: 50px; }
Cheers!
PeterHey wss310!
Open up enfold/includes/loop-index.php and replace the entire code within the file with: http://pastebin.com/cYBSQghy
Cheers!
PeterHey!
Please try to insert following code into the quick css field to fix the issue
.title_container { display: none !important; } .header_color .main_menu ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div { background-color: #d4cec3 !important; }
Cheers!
PeterNovember 2, 2013 at 9:46 am in reply to: "[LayerSliderWP] Slider not found" after migration to new server #183659Hi!
Use phpmyadmin (or any other database tool) to access your database and delete the “wp_layerslider” table. Then use the code I posted here: https://kriesi.at/support/topic/layersliders-deleted/ to restore the default layerslider data.
Regards,
PeterHey ttem!
Google uses the link text which is “About Us”. The link itself doesn’t affect the SEO in a negative way.
Best regards,
PeterHi theroyds!
I found this thread: http://wordpress.stackexchange.com/questions/108549/woocommmerce-show-sku-in-cart-page but I didn’t test it. You can insert the code at the bottom of functions.php
Regards,
PeterHey!
You can use Codestyling: http://wordpress.org/plugins/codestyling-localization/ to translate any plugin. Install the plugin, go to Tools > Localization and select “Plugins”. Then search for “BBpress” in the list and click on “Add new language” or select your language from the list. Click on “Rescan” to scan all text strings. Then click on “Edit” and translate the required strings from the “bbpress” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).
Best regards,
PeterHey!
Sure – Kriesi uses the plugin too: http://kriesi.at/archives/enfold-version-2-4-fullwidth-masonry-elements
Best regards,
PeterHey tecnavia!
I tagged this question for Kriesi.
Best regards,
PeterHi skauper!
No, the social icon list just supports font icons which you can download/generate here: http://fontello.com/
Regards,
PeterHey!
The only similar plugin I know is: http://wordpress.org/plugins/digg-digg/ but it’s not like “social tab” script on the force india website.
Regards,
Peter -
AuthorPosts