Forum Replies Created
-
AuthorPosts
-
Hey!
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, 11 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!
IsmaelHey!
Go to Enfold > Mobile Menu panel then set the Header Mobile Menu activation to the second option. Or add this in the Quick CSS field:
@media only screen and (max-width: 1100px) { .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide { display: block; } .responsive .av_mobile_menu_tablet .main_menu { display: none; } .html_mobile_menu_tablet #mobile-advanced { display: block; }}Cheers!
IsmaelHey!
Thank you for using Enfold.
@liquidsociety: You can use the Portfolio Grid element to create different portfolio pages with different categories. Create a page, add the portfolio grid element then select the portfolio category. Repeat steps to create another portfolio page.Cheers!
IsmaelApril 25, 2015 at 4:22 am in reply to: Multiple issues: Enfold Options missing, Contact Form Failure #434556Hey!
Thank you for using Enfold and sorry for the delay. Glad the update fixed the issues. :)
Regards,
IsmaelHey!
Thank you for using Enfold.
@Guenni007: Thank you!@stephen: Please try the suggestion above. If it doesn’t work, please provide a link to the page with the google map. A screenshot will help.
Cheers!
IsmaelHi!
That is actually a custom widget, not included in the main menu. I don’t think there is any plugin out there with that functionality by default. You need to find a contact form plugin that will work inside a dropdown. Try the Contact Form 7 plugin in combination with the mega menu. Add the form shortcode inside the menu description then enable the “Use the description to create a Text Block” option.
Cheers!
IsmaelHey!
Use this to remove the border:
.av-main-nav ul li a { border: 0 !important; }Best regards,
IsmaelHey!
Did you add any modifications in the theme? Please delete the entire enfold folder then replace it with a new one. There’s something wrong with the header markup.
Best regards,
IsmaelHi!
Please remove all the code then replace it with this:
add_action('wp_footer', 'inline_popup_enabler_2'); function inline_popup_enabler_2(){ ?> <script> (function($){ $(window).load(function() { $('.inline_popup a').magnificPopup({ type:'inline', midClick: true }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'inline_popup_enabler_1'); function inline_popup_enabler_1(){ ?> <script> (function($){ $(window).load(function() { $('.inline_popup').magnificPopup({ type:'inline', midClick: true }); }); })(jQuery); </script> <?php }Make sure that you place it below the line:
<?php.Cheers!
IsmaelHey rajivnetra!
Thank you for using Enfold.
I’m sorry but we don’t provide support for third party plugins. Please contact the plugin author. Anyway, I think the plugin will not work if you use the advance layout builder. Please create a page with the default editor. See if the rating is working.
Best regards,
IsmaelHey!
I noticed that you installed the visual composer. The advance layout builder will not work properly when you use the visual composer plugin. Please deactivate it. The body container is duplicated, same issue here:
https://kriesi.at/support/topic/when-choosing-boxed-layout-header-and-sidebar-displayed-wrong/#post-400047
https://kriesi.at/support/topic/menu-moves-right-slider-dissapears/The user said that it is a bbPress issue.
Regards,
IsmaelHey!
Remove the opacity then use rgba color values to create a transparent effect:
.av-masonry-outerimage-container:hover .av-masonry-image-container:before { content: ''; display: block; background: rgba(255,222,0,.5) url('http://stompor.eu/wp-content/uploads/2015/04/zoom_in_1-1121.png') 50% 40% no-repeat; width: 100%; height: 100%; z-index: 5000; position: absolute; }Regards,
IsmaelHi!
It’s actually weird. When I edit this page: http://maintecx.com/whats-new/?portfolio=financing
It takes me here: http://maintecx.com/wp-admin/post.php?post=18&action=edit
I think this is the correct “Financing” page: http://maintecx.com/portfolio-item/financing/
Best regards,
IsmaelHi Egeninkassospesialisten!
Thank you for using Enfold.
Can you please provide a link to the actual page with the issue? If you don’t mind, we would like to access the site. Please post the login details here as a private reply.
Cheers!
IsmaelApril 25, 2015 at 3:14 am in reply to: Social Icons and Phone Info in main menu and responsive #434540Hey!
Refer to this link on how to insert custom widget in the header area: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/
You can replace the filter with this one to insert the widget in the main header container instead:
add_action( 'ava_main_header', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { echo dynamic_sidebar( 'header' ); }Best regards,
IsmaelHi webschritt!
Thank you for using Enfold.
There’s a lot of script errors in the console. The plugin works fine on our installation so either a modification or a third party plugin is causing the issue. Please deactivate all plugins except woocommerce, remove browser cache then test it again.
Best regards,
IsmaelHi!
OK. Do the modifications above then go to the child pages of the Services page. The menu should appear just below the title. On the portent.com site, when you click on the Services page, it goes directly to the SEO page which I believe is a child page of the Services page.
Regards,
IsmaelApril 25, 2015 at 3:04 am in reply to: since wp update 4.1.2 enfold pages messed up and turned into entries, no more me #434537Hey!
I just updated to WordPress 4.2 and everything works out OK. No deleted pages or portfolio items. Did you transfer the site? There is no way for us to restore the missing pages or posts so I’m not sure if we can be of any help regarding this issue. Please contact the owner’s hosting provider to restore the site.
Best regards,
IsmaelHey!
You can actually disable the breadcrumbs globally then create a new page. Add the bbPress shortcode, the one above for example, then enable the breadcrumb. It will show the forum index page with all the topics etc plus the breadcrumbs.
Or enable the breadcrumbs globally then add this in the Quick CSS field to disable it for other pages:
.stretch_full.container_wrap.title_container { display: none; } .bbpress .stretch_full.container_wrap.title_container { display: block; }Cheers!
Ismael -
This reply was modified 10 years, 11 months ago by
-
AuthorPosts
