Forum Replies Created
-
AuthorPosts
-
Hey _Hegel!
We’ll include the 5.2.0 version with the next theme update. You can’t update the plugin by yourself if you don’t own a separate LayerSlider plugin license.
Best regards,
PeterHi!
Yes, you can add this to the child theme or parent theme functions.php file. Enfold uses the standard wp_enqueue_script function: http://codex.wordpress.org/Function_Reference/wp_enqueue_script to enqueue scripts.
Cheers!
PeterHi!
Probably you need to replace all occurrences of the http:// urls with https:// urls – see: https://kriesi.at/support/topic/installing-ssl-certificate-with-wordpress-https-plugin-and-css-problems/#post-302753
Cheers!
PeterHi codecreative!
We did not test it and we don’t know if it works or not. If you want to use it with Enfold I recommend to insert the canvas carousel code into the “Code Block” element. Note that we can’t provide support just in case it doesn’t work.
Best regards,
PeterHey!
You can suggest new features here: https://kriesi.at/support/enfold-feature-requests/ . Tbh we don’t have any plans to integrate it in Enfold because (afaik) you can use plugins like: https://wordpress.org/plugins/download-monitor/ to count the downloads.
Best regards,
PeterHi!
Schön, dass ich helfen konnte :)
Best regards,
PeterHi!
Yes it should show the language switcher – please create us an admin account and post the login credentials as private reply – we’ll look into it.
Regards,
PeterHi codecreative!
Which icons are missing? Please create us an admin account and we’ll check the configuration.
Cheers!
PeterAugust 15, 2014 at 10:54 am in reply to: transferred site but enfold settings not working and save settings grayed out #304806Hey!
Great, please let us know if the plugin doesn’t solve the issue.
Best regards,
PeterHey!
Glad you found a solution :)
Best regards,
PeterHi Jamie A!
The white page sounds like a server timeout (i.e. the server just stops to process the php code). My recommendation is to check if supercache solves the issue if it’s activated. If yes just keep it activated and all users who are not logged in should not notice the server timeouts. If SuperCache doesn’t help you can try w3tc instead: https://wordpress.org/plugins/w3-total-cache/ . If both plugins can’t solve the issue I recommend to switch to another host or to upgrade your current web hosting plan.
Cheers!
PeterHi!
Unfortunately you can’t easily use third party plugin shortcodes which require/load javascript with the ajax preview feature. The main reason is that ajax requires some special code to load and bind the javascript code of the shorrtcode to the ajax content. This is not a bug of the theme but simple how ajax and event bindings work. We use an ajax callback function (called $.avia_utilities.avia_ajax_call located in wp-content/themes/enfold/js/avia.js) to load and bind our slideshow, shortcodes, etc. js code after the ajax call. You might be able to add the Zoopmplayer code to this function but that’s something which is beyond the scope of our support forum. You can try to contact the plugin developer – maybe he can tell you which functions can be used with the avia_ajax_call callback function – you just need to insert the javascript code below this code in wp-content/themes/enfold/js/avia.js:
$.avia_utilities.avia_ajax_call = function(container) { if(typeof container == 'undefined'){ container = 'body';};
If the plugin author can’t help you please hire a freelancer who should be able to help you with the implementation. Alternatively just use the standard portfolio and don’t try to load the Zoopmplayer shortcode with ajax…
Best regards,
PeterHi Jamie A!
You could use tags to exclude certain posts from the “you may also like” section. Open up wp-content/themes/enfold/includes/related-posts.php and replace:
'tag__in' => $tag_ids,
with
'tag__in' => $tag_ids, 'tag__not_in' => array(20),
Instead of 20 insert the id of the tag you want to use to mark the posts with portrait images. If you don’t know how to get the id of the tag please read http://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/
Best regards,
PeterHi!
Please create us an admin account – we’ll check the configuration first hand.
Regards,
PeterHey!
Der Styleswitcher ist nur Teil der Demo Website und ist kein Enfold Feature. Ich habe jetzt schnell die WordPress Plugin Datenbank durchsucht und möglicherweise hilft euch: http://wordpress.org/plugins/mystickyelements/
Cheers!
PeterHey afarahani!
1) We use the is_rtl() function: http://codex.wordpress.org/Function_Reference/is_rtl to check if a rtl language is used or not. Normally wordpress (and WPML) should take care of it and load the rtl stylesheet file. Your website ( http://www.franchiseelites.com/fa/ ) loads the rtl.css file.
2) Maybe it’s a cross domain origin issue. To solve it follow the instructions here: http://davidwalsh.name/cdn-fonts or here: http://www.unseenrevolution.com/solution-firefox-font-face-cross-domain-problem/
3) Please check the styling settings of the Farsi website – maybe you set a black background color for the header? Go to Enfold (Fa) > Theme Options to set the settings for the Farsi website.
Best regards,
PeterHey afarahani!
1) You can use this code to remove the default theme flags completely – insert it into the functions.php file:
add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); }
Then go to WPML > Languages and tick the “Display the language switcher in the WP Menu” option. You can also configure the language switcher type (dropdown, list, etc.) on this option page.
2) Try to insert this code into the quick css field to move the mail address to the next line:
@media only screen and (max-width: 767px){ .responsive .phone-info{ display: block; margin-top: 29px; } }
3) Use this css code and adjust the font-size value:
.phone-info span { font-size: 20px; }
Regards,
PeterHi!
Thanks for the suggestion. Please use the feature request page here: https://kriesi.at/support/enfold-feature-requests/ – we use this page to collect all ideas.
Cheers!
PeterHey Letj!
Nein, eine solche Funktion unterstützt Enfold nicht und müsste von einem Entwickler hinzugefügt werden.
Regards,
PeterHey albe67!
You can’t use a captcha plugin with the default theme contact form. If you really want to use recaptcha or other captcha services please purchase an advanced contact form plugin like Formidable or Gravity Forms.
Cheers!
PeterHey!
@cl – thanks for helping us out.
@Rustybucket – please let us know if you’ve any additional questionsBest regards,
PeterHey devok!
I’m not sure if we can help you because the socket does not support widgets by default and we can’t provide support for customized theme code. If you can provide a link to your website we’ll have a quick look – maybe we can find a solution based on css code.
Best regards,
PeterHey!
Kriesi already fixed the issue. We’ll release the fixed code with the next update.
Cheers!
PeterHi!
Duplicate of https://kriesi.at/support/topic/header-php-2/ – please don’t create two similar threads regarding the same issue(s).
Best regards,
PeterHi!
Did you already translate some pages? WPML won’t show the other languages in the dropdown if no translation of the page/posts exists. It seems like the default language is English but you didn’t add a translation of the homepage, etc. yet.
Best regards,
PeterHey!
1) Can you check the link please – http://www.step-lab.com/en/portfolio-articoli/electromechanical-fatigue-test-machine/ returns a 404 page.
2) I’m not sure but maybe another plugin causes a conflict with WPML. You can also try to clear the cookie cache because sometimes WPML sets a wrong language cookie. I noticed this bug if i.e. the mailchimp plugin is activated (see https://kriesi.at/support/topic/enfold-wpml-problems/ ).
3) You can use this plugin: https://wordpress.org/plugins/display-widgets/ – insert the widget into the “Display Everywhere” widget area, select “Show on checked pages” from the dropdown and tick the “Portfolio entries” checkbox below the “Taxonomies +/-” headline. ( http://www.clipular.com/c/5539638403923968.png?k=ZXLOcWNzruOtskzVw09RIcCtroE )
Cheers!
PeterHi sunstarcomposites!
Did you already translate some pages? WPML won’t show the other languages in the dropdown if no translation of the page/posts exists. It seems like the default language is English but you didn’t add a translation of the homepage, etc. yet.
Best regards,
PeterAugust 14, 2014 at 5:27 pm in reply to: WMPL and advanced editor problem (urgent if possible) #304492Hi!
I tested the “Duplicate” translation option and it worked just fine for me. Tick the “duplicate” checkbox and click the duplicate button: http://www.clipular.com/c/6119929287802880.png?k=loBt_iScpDt0C3ouj7fQWSBncOw . Afterwards go to the duplicated (translation) of the page and click the “Translate Independently” button: http://www.clipular.com/c/6352167833174016.png?k=UZaLhUaust52mHmU_TkKpZ8RQnY . Then translate/change the content and save it and you’re ready. I tested the translation with the “About me” page. You can also test it with this page here: http://heartmedicine.co.uk.win11.mojsite.com/wp-admin/post.php?post=493&action=edit&lang=en
Regards,
Peter-
This reply was modified 10 years, 10 months ago by
Yigit.
Hey!
1) No, unfortunately not. The filters only work with php and not with jquery/js. There’s currently no hook to bypass the pause event with js code.
2) Because the pause button doesn’t make sense if the videos is displayed in the background. The content overlaps the video background (links inside the text, clickable images, etc.) and there’s simply no space to display a pause button. We wouldn’t be able to distingish between the “play/pause” click events and clicks on the overlapping content. The fullscreen slider on the other hand is not overlapped by other content or text links.
Cheers!
PeterAugust 14, 2014 at 5:10 pm in reply to: Rename "Portfolio item" in search results (with german translation) #304483Hey!
I’m not sure if the $label variable really contains the string “Portfolio Einträge”. Try this code instead:
add_filter('avf_ajax_search_label_names','avf_ajax_search_assign_label_names', 10, 1); function avf_ajax_search_assign_label_names($label) { $label = trim($label); if($label == 'Portfolio Einträge' || $label == 'Portfolio Entries' ) { $label = 'Mitarbeiter'; } else if($label == 'Produkte') { $label = 'Downloads'; } else { $label = $label; } return $label; }
If it still doesn’t work insert this code:
add_filter('avf_ajax_search_label_names','avf_ajax_search_assign_label_names', 10, 1); function avf_ajax_search_assign_label_names($label) { $label = trim($label); if(strpos($a,'Portfolio') !== false) { $label = 'Mitarbeiter'; } else if($label == 'Produkte') { $label = 'Downloads'; } else { $label = $label; } return $label; }
into the functions.php file and check if the code starts to work.
Cheers!
Peter -
This reply was modified 10 years, 10 months ago by
-
AuthorPosts