Forum Replies Created
-
AuthorPosts
-
Hi HiDrew!
Thank you for using Enfold.
1.) Please reconfigure the Header options. Set the logo and menu position again then reset the header size or height.
2.) Go to the Enfold > General Styling > Main Content panel. Adjust the border colors or add this in the Quick CSS field:
#top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select { border-color: #eeeeee; background-color: #ffffff; color: #808080; }
3.) Please post the previous code on pastebin.com. You can use the filter ava_main_header in the functions.php file to bring back Mr. Turtle:
add_action( 'ava_main_header', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { echo "MR TURTLE CODE HERE"; }
Best regards,
IsmaelApril 27, 2015 at 2:42 am in reply to: Navigation between portfolio items with full width slider #434957Hey Keith!
Thank you for using Enfold.
The arrows will be disabled if a fullwidth slider is present on the page. Add this in the functions.php file to enable it back:
add_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; }
Regards,
IsmaelApril 27, 2015 at 2:32 am in reply to: Product sub – categories shown instead of individual products on Product Grid el #434953Hey!
Use the woocommerce shortcode in a text or code block:
[product_categories id="44" parent="0"]
Add the category id separated by comma. http://docs.woothemes.com/document/woocommerce-shortcodes/#section-13
Cheers!
IsmaelHey!
Have you tried adding an Image element or a slider? You can edit add css modifications to increase the size and remove the padding. Please create a test page or post with the Image or Slider.
Regards,
IsmaelHey Lukasz!
Thank you for using Enfold.
If you have a code that needs to go directly in the template file, edit includes > loop-index.php. Look for this code:
// echo the post content echo '<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>'; echo $content; echo '</div>';
Add the social code below.
Regards,
IsmaelHi!
Please refer to these links for a possible fix:
http://blog.jalproductions.co.uk/2013/04/19/how-to-fix-rtl-bracketsparenthesis-problem/
http://stackoverflow.com/questions/5741522/brackets-displays-wrongly-for-right-to-left-display-styleCheers!
IsmaelHi leszek!
Thank you for using Enfold.
Where exactly do you want this modification to go? Please give us a link to the actual page. Try to edit comments.php or includes > loop-comment.php.
Cheers!
IsmaelHey mdbg!
Thank you for using Enfold.
This is not possible with the button shortcode because it doesn’t accept url queries. Maybe, you should add the button using html tags inside a code or text block. Something like:
<a href="http://www.mysite.com?email_is=FillF (Email address hidden if logged out) " class="mybutton">Click Here</a>
Use the class attribute in the Quick CSS field to create a button style element.
Best regards,
IsmaelHey!
1.) Add this in the functions.php file if you want to limit the post content:
add_filter( 'the_content', 'custom_excerpt_length', 999 ); function custom_excerpt_length($content) { if(is_archive()) { $content = wp_trim_words( $content, 50, '...' ); } return $content; }
2.) Use the Widget Logic plugin to create unique sidebars for category pages.
Cheers!
IsmaelHey ahuby!
Thank you for using Enfold.
Anything you add in the text editor should appear in the product description tab. The reviews tab will be enabled by default. And the additional information tab will display if a product has custom attributes.
Regards,
IsmaelHey!
Please post the webite url here. Make sure that you have the latest version of the theme, 3.1.3. What is the memory limit of the WP installation? Try to increase it to at least 128M: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
IsmaelHi marijn!
Thank you for using Enfold.
I haven’t tested this plugin but maybe it will help: https://wordpress.org/plugins/woocommerce-direct-checkout/
Yes, you can use the files for testing purposes.
Best regards,
IsmaelHi!
So you’re trying to create a related posts section. Unfortunately, the pagination will also affect the current post. Try the Post Slider element instead: http://morrishullinger.com/urban-archeology-nyc/
The arrows are not working when I added the post slider. I’m not sure if you have the latest version of the theme. Please update to Enfold 3.1.3.
Best regards,
IsmaelHi!
The default sidebar or widget area should display right away after you set up the blog. Please update the theme to the latest version, 3.1.3. Make sure that you have widgets inside the “Displayed Area” widget area on Appearance > Widgets panel.
Regards,
IsmaelApril 25, 2015 at 7:06 am in reply to: Make section invisible but visible on scrolling to a certain position on the pag #434611Hey gigoz!
Thank you for using Enfold.
Looks like you managed to do some javascript magic on it. Did you figure it out?
Best regards,
IsmaelApril 25, 2015 at 6:53 am in reply to: Masonry Gallery – Images Stacking On Top Of Each Other #434608Hey!
It’s in the functions.php file. The code is working. As you can see the gallery items automatically adjust their position while loading. Remove browser cache then reload the page: http://www.tinyillusion.com/test-page-for-gallery/
Regards,
IsmaelHi!
Yes, but you activated the mega menu option. Go to the Menus panel to disable it.
Best regards,
IsmaelHi!
You didn’t set the blog page as blog. If you chose to use the advance layout builder for the blog page, you need to add the blog posts element or any other element that can display the posts such as masonry, magazine etc. Please check it now: http://www.inspectralsecurity.com/blog/
Cheers!
IsmaelHey!
Hmm.. I can’t reproduce the issue as well. Tested on both Chrome and Firefox, Windows 8 and 7. I’ll ask the rest of the support team to check it.
Best regards,
IsmaelApril 25, 2015 at 6:38 am in reply to: Sidebar ON for post single but OFF for portfolio single #434602Hey!
It’s not working because you’re using the advance layout builder to create the portfolio items. Remove the modifications then replace the code in functions.php with this:
add_filter('avia_layout_filter', 'avia_change_portfolio_layout', 10, 2); function avia_change_portfolio_layout($layout, $post_id){ if(is_singular('portfolio')) { $layout['current']['content'] = "av-content-full"; $layout['current']['main'] = "fullsize"; } return $layout; }
Regards,
IsmaelHi!
Make sure that you have the latest version of the theme, 3.1.3. Post the website url here so that we can check it.
Cheers!
IsmaelHi!
Please post the code in pastebin.com. What happens when you remove this line?
<script src=”http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js” type=”text/javascript”><script src=”//www.hypotheekbond.nl/javascript/original/f1_external.js” type=”text/javascript”>
then place this in functions.php:
add_action( 'wp_enqueue_scripts', 'ava_custom_enqueue_scripts' ); function ava_custom_enqueue_scripts() { wp_register_script( 'f1-external', 'http://www.hypotheekbond.nl/javascript/original/f1_external.js'); wp_register_script( 'ajax-jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js'); wp_enqueue_script( 'f1-external', 'http://www.hypotheekbond.nl/javascript/original/f1_external.js', array('jquery'), '1.0.0', true ); wp_enqueue_script( 'ajax-jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js', array('jquery'), '1.0.0', true ); }
Best regards,
IsmaelHey!
Have you tried the inset box shadow? http://makandracards.com/makandra/12019-css-emulate-borders-with-inset-box-shadows
Regards,
IsmaelHi!
Replace the code with this to add a border:
.custom-iconbox .iconbox_content { border: 5px solid red; background-color: #fecc00!important; }
If you want to change the background of the iconbox beside the yellow one, do the same thing. Add a custom css class attribute then use it to define the style like the one provided above. Please refer to this link: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Regards,
IsmaelApril 25, 2015 at 6:10 am in reply to: Missing Featured Image when using the advanced layout editor #434588Hey!
I’m sorry but it’s not possible. You need to modify the template-builder.php file if you want to show the featured image and post meta infos. Unfortunately, we can’t help you with that. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization
Cheers!
IsmaelHi!
Sometimes a single image dimension isn’t enough to cover all devices’s screen sizes. Maybe, you need to create another slider specifically made for mobile devices. Refer to these links for more info:
http://stackoverflow.com/questions/11796297/div-show-hide-media-query
https://kriesi.at/support/topic/how-to-hide-some-elements-in-mobile-version/#post-362263
https://kriesi.at/support/topic/is-there-an-option-to-create-a-separate-page-design-specific-to-mobile-devices/
https://kriesi.at/support/topic/displaying-another-slider-on-mobile-devices/
https://kriesi.at/support/topic/replace-slider-on-mobile/You can turn on the custom css class attribute to help you differentiate two sliders: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Cheers!
Ismael-
This reply was modified 10 years, 2 months ago by
Ismael.
Hey Zaw Zaw!
Thank you for using Enfold.
Please install this plugin to force https: https://wordpress.org/plugins/wp-force-https/
Best regards,
IsmaelHey Oran!
Thank you for using Enfold.
Yes, in theory that’s possible but the implementation of an ajax script in the tab will require major modification on the theme. Unfortunately, this is beyond of the scope of support and not something we can do in a short period of time. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization
Best regards,
IsmaelApril 25, 2015 at 4:44 am in reply to: Can "Featured Image" within a post NOT link to attachment page? #434565Hi!
Thank you for the screenshot. Add this in the Quick CSS field to disable the links:
.single .big-preview a, .single .small-preview a { pointer-events: none; }
Cheers!
Ismael -
This reply was modified 10 years, 2 months ago by
-
AuthorPosts