Forum Replies Created
-
AuthorPosts
-
April 19, 2015 at 7:28 am in reply to: How to prevent Custom Post Type from being treated like Blog Post #430822
Hi!
Add the custom post type’s class selector:
.single-sfwd-courses .post-meta-infos { display: none; }Regards,
IsmaelHi!
I’m sorry but it’s not possible to update the settings globally without editing the database. You can do an sql query like this:
The wp_postmeta is the table where the _product_hover meta key or the product hover settings is located. You need to set the meta_value to “hover_active”. Please create a backup of the database and the whole site before doing this.
Regards,
IsmaelHi Luke86!
Thank you for using Enfold.
You can try this plugin: https://wordpress.org/plugins/widget-logic/
Use the has_term conditional function: https://codex.wordpress.org/Function_Reference/has_term
Or the is_tax function: https://codex.wordpress.org/Function_Reference/is_tax
Best regards,
IsmaelHey!
Add this in the Quick CSS field:
div#full_slider_1, div#full_slider_1 > * { height: 500px !important; max-height: 500px !important; } div#full_slider_1 .slideshow_align_caption { position: relative; top: -80px; }Use css media queries to change the height of the slider on different screen sizes. You can also turn on the custom css class attribute: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Best regards,
IsmaelHi!
Yes, it works on our installation. Please carefully follow the instructions provided here: http://www.electronmedia.in/wp/wordpress-post-pagination-nextpage-not-working
Cheers!
IsmaelHi!
Thank you for the screenshots. First, you need to update the theme to version 3.1.3 then add this to the Quick CSS field to adjust the position of the image element caption:
.av-image-caption-overlay-center { display: block; width: 50%; bottom: 20px; left: 20px; position: absolute; } .av-caption-image-overlay-bg { display: block; height: 30px; width: 50%; position: absolute; left: 20px; bottom: 20px; }Cheers!
IsmaelHey yudkoren!
Thank you for using Enfold.
1.) Please refer to this link for a possible fix: https://kriesi.at/support/topic/rtl-sortedreverse-functions-problem/
2.) Give us a link to the actual page where you want to change the title.
Regards,
IsmaelHi!
Add this to the functions.php file:
add_filter('avf_title_args', 'avf_title_args_mod', 10, 2); // remove default title function avf_title_args_mod($args,$id) { $av_sidebar_menu = avia_sidebar_menu(false); $args['html'] = "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}{$av_sidebar_menu}</div></div>"; return $args; }After that, add this to the Quick CSS field:
.title_container .widget_nav_menu { position: relative; } .title_container ul:first-child>.current-menu-item>a, .title_container ul:first-child>.current_page_item>a { padding: 3px 7px 7px 0; } #top .title_container .widget_nav_menu li { float: left; clear: none; margin: 0 5px; }Style the menu as you want.
Cheers!
IsmaelHi!
This is the css code that breaks it:
.container { padding-right: 0px !important; }Remove it from the Quick CSS field.
Cheers!
IsmaelHi Vincent!
Thank you for using Enfold.
Can you please provide a screenshot? Try to use the color section. Add a background.
Cheers!
IsmaelHey!
What you’re trying to do can’t be done without custom modification on the theme. Please hire a freelance developer to modify the page template. Anyway, you can try this in the Quick CSS field:
.container .av-content-small.units > div { background: gray; padding: 25px; left: -25px; position: relative; border: 1px solid; top: -25px; } aside.sidebar.sidebar_right.smartphones_sidebar_active.alpha.units { background: gray; left: 25px; position: relative; border: 1px solid; top: 25px; padding: 25px; } aside.sidebar.sidebar_right.smartphones_sidebar_active.alpha.units > div { left: -25px; position: relative; }Best regards,
IsmaelHey!
Can you please provide a screenshot on how you want the logo to look inside the header? This should work:
strong.logo { height: 80%; top: 10%; }Best regards,
IsmaelApril 19, 2015 at 4:31 am in reply to: Partner/Logo Element on mobile screen: 4 columns appearing as 2 x 2 #430803Hey richardbeatty!
Thank you for using Enfold.
I’m not sure if you have the latest version of the theme. Is the version 3.1.3? If not, please update it.
Cheers!
IsmaelHey!
@robinleung: Did you install any minify or cache plugins? And make sure that you have the latest version of the theme. Right now, the theme version is 3.0.4. Please update to 3.1.3.Best regards,
IsmaelHi!
Thank you for the info but the login credentials are not working. Please check.
Regards,
IsmaelHey!
Sorry about that. There’s a missing bracket right after the last line:
<?phpReplace it with:
<?php }Make sure to replace the css codes in the Quick CSS field.
Regards,
IsmaelHey waveseven!
Thank you for using Enfold.
Create a button and add the url with the “psort” parameter using the portfolio category slug as the value.
http://www.mysite.com/myportfolio?psort=htmlAnd then add this script in the functions.php file to trigger the sort button.
add_action('wp_footer', 'ava_auto_click'); function ava_auto_click() { if ( $_GET["psort"] == "html" ) { ?> <script> (function($){ $(window).load(function() { $('.html_sort_button').trigger('click'); }); })(jQuery); </script> <?php } }Cheers!
IsmaelHey!
We can see the issue. You expect the same fixed toolbar behavior, like the default editor. I don’t think we can do anything about it this time. If you use the visual editor plugin from wpbakery you will see the same behavior in their text blocks, if I am not mistaken. For now, I’m afraid you will have to make do of the default toolbar behavior.
Cheers!
IsmaelHey!
Use this in the Quick CSS field:
.page-id-12 #header_main > .container, .page-id-12 #header_main > .container .main_menu ul:first-child > li > a, .page-id-12 #header_main #menu-item-shop .cart_dropdown_link { height: 120px !important; line-height: 120px !important; } .page-id-12 strong.logo { top: 30px; }Best regards,
IsmaelHey xyzb!
Thank you for using Enfold.
Use the avf_which_archive_output filter in the functions.php file:
add_filter('avf_which_archive_output','avf_change_which_archive', 10, 3); function avf_change_which_archive($output) { if(is_category()) { $output = single_cat_title('',false); } return $output; }The code above is for the category archive title.
Cheers!
IsmaelHey!
What is this code for?
#header_main { border: medium none !important; top: -35px; }Try to add the quoteline by using this filter: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/
Cheers!
IsmaelHey!
Please refer to this link for a possible permalink fix: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems
Setting the “Overwrite Portfolio Link Setting” to custom link and adding a video url will force the portfolio item to open a video lightbox, just like in the demo.
Best regards,
IsmaelHi DJQuad!
Thank you for using Enfold.
Actually, the convention or common practice when a website or a theme is fully responsive and is well designed to work on a mobile device, zoom capabilities or features are usually disabled. This is the case with Enfold. If you want to enable zoom, use the fixed layout. Go to Enfold > General Layout > Dimensions then disable the Responsive Site option.
Cheers!
IsmaelHi dominiquehurley!
Thank you for using Enfold.
You can add this to the Quick CSS field to hide the pingback section:
ol.pingbacklist, #pingback_heading { display: none; }Regards,
IsmaelApril 17, 2015 at 9:49 am in reply to: Table Element – Not working properly in responsive mode #430195Hey!
Please edit the theme’s table element. Set the table purpose to tabular and the responsive styling to scrollable.
Regards,
IsmaelApril 17, 2015 at 9:43 am in reply to: Photo galleries in blog aren't changing no matter what style I choose #430192Hi!
According to other forums, the gallery type feature was disabled after WP version 3.5. Surprisingly, we didn’t notice that since we are used to working with the default theme features. In order to fix it, you need to install the Jetpack plugin: https://wordpress.org/support/topic/gallery-settings-type-option-not-appearing
This part is important:
Some parts of Jetpack cannot work locally ( http://wordpress.stackexchange.com/questions/42352/jetpack-running-locally ), and also some part’s cannot work if you do not have wordpress.com account connected to your Jetpack installation. So you will probably need to install Jetpack on some real domain and during installation it will ask you to connect to your wordpress.com account.
If it doesn’t work, then you will need to recreate the post galleries from scratch which I agree is a ton of work. Let’s hope the jetpack plugin works.
Best regards,
IsmaelHey cisqo!
Thank you for using Enfold.
Maybe these plugins will help:
https://wordpress.org/plugins/hierarchical-pages/
https://wordpress.org/plugins/simple-page-hierarchy-widget/Use the Widget Area element in the advance layout builder if you want to display the widget inside the page content.
Cheers!
IsmaelHi!
I tried to use the word “credo” in the search and it works: http://neu.inputaudio.de/?s=credo
If you want to improve the search capability of the site, use plugins like Relevanssi or SearchWP. Refer to these links for more info:
http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/
http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/Best regards,
IsmaelHey!
You need to add the code in the functions.php file. If you have a child theme, you can create another functions.php file then place the code there. Please refer to this link: http://kriesi.at/documentation/enfold/using-a-child-theme/
Best regards,
Ismael -
AuthorPosts
