Forum Replies Created
-
AuthorPosts
-
Hey zeaigars,
Thank you for using Enfold.
The whole sidebar is already white. If you want to create more space on the right side of the container, please use this css code.
.inner_sidebar { margin-left: 50px; margin-right: 50px; }Best regards,
IsmaelJanuary 17, 2017 at 8:57 am in reply to: Instagram icon and link on the social media buttons #734563Hey olofnaucler,
Thank you for using Enfold.
You can add more social media button by using the “avia_social_share_link_arguments” filter. Example here:
// https://kriesi.at/support/topic/adding-whatsapp-button-on-social-share-buttons/#post-573570
Best regards,
IsmaelHi,
I would like to check the issue but the site is not loading properly on my end. Did you transfer the site? Which element or shortcode are you using to create the gallery?
Best regards,
IsmaelHi,
Thank you for using Enfold.
Please edit the masonry element then set the “Order by” settings to “Page Attribute”. After that, add the following code in the functions.php file:
add_filter('avf_portfolio_cpt_args', 'avf_portfolio_add_custom_fields', 1); function avf_portfolio_add_custom_fields($args) { $args['supports'][] = 'page-attributes'; return $args; }Edit each portfolio entry then sort them based on the value of the “Order” field.
Best regards,
IsmaelHey ariane1001,
Thank you for using Enfold.
I would like to check the page but it doesn’t exist. Please re-create the test page so that we can see the issue.
Best regards,
IsmaelHi,
The advance layout builder is not working properly because of the following error. Please update the WPML plugin to the latest version.
Uncaught TypeError: postEdit.$connect_translations_dialog.dialog is not a function// https://wpml.org/category/changelog/
Best regards,
IsmaelJanuary 17, 2017 at 8:31 am in reply to: Change text displayed for upselling products – woocommerce – enfold #734550Hey Unternehmerich,
Thank you for using Enfold.
Please install the following plugin. It will enable you to translate the text or string.
// https://wordpress.org/plugins/loco-translate/
Best regards,
IsmaelHi,
This is possible with a plugin but you can only add the first category in the url.
// https://wordpress.org/plugins/custom-post-type-permalinks/
Best regards,
IsmaelHi,
Thank you for the update. Please adjust the css code a bit.
#header .twelve.units { max-width: 600px; margin: 0 auto; left: -150px !important; right: auto !important; }This will push the mega menu container to the left by 150px.
Best regards,
IsmaelHi,
The “Raleway” font is loaded by the layer slider plugin. There is no layer slider in the 404 page, that’s why the font is different. Please add this in the functions.php file.
add_action('wp_head','hook_font'); function hook_font() { $output = " <link rel='stylesheet' id='custom-google-fonts-css' href='http://fonts.googleapis.com/css?family=Raleway:300,regular,italic,700,800,900&subset=latin%2Clatin-ext' type='text/css' media='all' />\n"; echo $output; }Best regards,
IsmaelHi,
@jewsforjesus: I’m sorry but I’m asking you to create a new topic or thread. This is a public thread for the theme translation. Please create your own topic or thread.Best regards,
IsmaelHi,
Thank you for the info. The site is using an old version of the theme. Please update to version 3.8.4.
Best regards,
IsmaelHi,
The theme options for the “Nederlands” version was not configured correctly. We set the frontpage and blog page accordingly. Please note that you have to configure the theme options for every languages.
Best regards,
IsmaelHi!
Thank you for the info.
We modified line 436 instead.
$this->loop[$key]['content'] = strip_tags( $entry->post_excerpt );to..
$this->loop[$key]['content'] = $entry->post_excerpt;The html tags are stripped because it causes a lot of markup issues on some installations, especially when they’re not careful with the tags.
Best regards,
IsmaelHey!
There’s a missing closing curly brace.
.av-section-bottom-logo.header_color + div + .avia-section { margin-top: -135px; .av-section-bottom-logo.header_color .container, .av-section-bottom-logo.header_color .container .inner-container { width: 100% !important; max-width: 100%; }..should be:
.av-section-bottom-logo.header_color + div + .avia-section { margin-top: -135px; } .av-section-bottom-logo.header_color .container, .av-section-bottom-logo.header_color .container .inner-container { width: 100% !important; max-width: 100%; }Best regards,
IsmaelHi,
I’m sorry but the login credentials are incorrect. Please check it carefully. The image dimension can be based on the standard screen or monitor resolutions use nowadays. A 1600px wide image should be fine.
// http://www.rapidtables.com/web/dev/screen-resolution-statistics.htm
Best regards,
IsmaelHi,
The style.css file is working. I found one of the css declarations which is being applied properly in the frontend.
body { background: transparent url(https://www.aseal.nl/cms2015/wp-content/themes/aseal/images/bg-seal.png) no-repeat fixed right 30%; }Best regards,
IsmaelHi,
The issue is cause by the following css modification.
body.ncf_sidebar_push > * { position: relative; }Do you have any idea where “ncf” is coming from?
Best regards,
IsmaelJanuary 17, 2017 at 7:24 am in reply to: Conflict between ENFOLD and Measurement Price Calculator [URGENT] #734515Hey!
Thank you for your patience. Let us know if you encounter any issues in the future. Have a nice day.
Cheers!
IsmaelJanuary 16, 2017 at 3:51 pm in reply to: Conflict between ENFOLD and Measurement Price Calculator [URGENT] #734112Hey!
Alright. The add to cart button is working now. We replaced the following line in the child theme’s woocommerce-mod.js file:
newNum = jQuery(jQuery('<div />').append(number.clone(true)).html().replace('number','text')).insertAfter(number);.. with:
newNum = jQuery(jQuery('<div />').append(number.clone(true)).html()).insertAfter(number);.
Please remove browser cache or hard refresh before checking one of the products.
Cheers!
IsmaelHi,
This is the error that we get from the EN version.
DeletedApiProjectMapError Error
Your API project may have been deleted from the Google API Console. Please check the project for which you generated the API key that’s included in JavaScript API loader. You can create a new API project and get a new key on the Google API Console.
See Obtaining an API key.Did you delete the project from the Google API console? I also noticed that the API key of the Dutch theme options is different from the English one so we copied the API key from the dutch version to the english theme options. Please remove browser cache or hard refresh before checking the page.
Best regards,
IsmaelHi,
Alright. Please replace the code in the functions.php file with the following.
// disable layout metabox for post add_filter('avf_builder_boxes', 'avf_builder_boxes_mod'); function avf_builder_boxes_mod($metabox) { foreach($metabox as &$meta) { if($meta['id'] == 'layout') { $meta['page'] = array('page', 'portfolio'); } } return $metabox; }Best regards,
IsmaelHi!
Please add this css code to fix the width of the logo container.
.av-section-bottom-logo.header_color .container, .av-section-bottom-logo.header_color .container .inner-container { width: 100% !important; max-width: 100%; }Regards,
IsmaelHey Emma!
Is this the original topic? https://kriesi.at/support/topic/header-background-different-colours/
Best regards,
IsmaelHi,
Please add this one:
body .container_wrap .hr.avia-builder-el-no-sibling { margin-top: 20px; margin-bottom: 20px; }Best regards,
IsmaelHi,
Great! Glad that you fixed the issue. Let us know if you need anything else. :)
Best regards,
IsmaelHi,
Thank you for the info.
Please try to modify the config-templatebuilder > avia-shortcodes > av-helper-masonry.php file, look for this code around line 443:
$this->loop[$key]['content'] = avia_backend_truncate($entry->post_content, apply_filters( 'avf_masonry_excerpt_length' , 60) , apply_filters( 'avf_masonry_excerpt_delimiter' , " "), "…", true, '');.. replace it with:
$this->loop[$key]['content'] = $entry->post_content;Let us know if this fixes the issue. If not, please post the FTP details here so that we can test it further.
Best regards,
IsmaelJanuary 16, 2017 at 7:13 am in reply to: Translate No products found which match your selection. #733908Hi,
When there is no product in the slider available i get the following message:
No products found which match your selection.What slider? Could you please provide a screenshot or the url to the page or section with the issue?
In the loco translate panel, after translation, did you sync the language files?
Best regards,
IsmaelJanuary 16, 2017 at 7:08 am in reply to: Conflict between ENFOLD and Measurement Price Calculator [URGENT] #733906Hi!
Again, we would like to ask you to get a fresh copy of the theme then override your installation just to make sure that none of the files are modified or missing.
So can I ask you to NOT work on enfold root AND NOT on enfold child root.
Can you work ONLY on this folder TEST in www
You can see you effects here : EDITEDI’m sorry but you didn’t mention this right away. I’m actually working on the wrong directory before I posted that the css modifications are NOT affecting the site.
Yes I did. The snippet is activated on front and backend.
Where did you put it? I checked both the parent and the child theme’s function.php file but I can’t find that code. Please check it yourself. That snippet is used to load the woocommerce-mod.js file from the child theme instead of the parent theme so without it the js file in the child theme is useless. And without that snippet, the js file is not going to affect the site even if I rename it or delete it completely.
Regards,
Ismael -
AuthorPosts
