Forum Replies Created
-
AuthorPosts
-
June 29, 2018 at 6:57 pm in reply to: Custom Post Type – Advanced Layout Builder – Spinning Wheel of Death #979437
Hi,
I changed the code to following one
/* Add Advanced Layout Builder to Case Studies */ add_filter('avf_builder_boxes', 'add_builder_to_posttype'); function add_builder_to_posttype($metabox) { foreach($metabox as &$meta) { if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout') { $meta['page'][] = 'casestudy'; /*instead add the name of the custom post type here*/ } } return $metabox; }Please review your website :)
Best regards,
YigitHey,
Could you please post temporary admin logins and screenshots of the issues you are having so we can make sure we are on the same page? You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.
Regards,
YigitHey,
If fonts you would like to upload are not Google fonts, please see refer to this post regarding @font-face – http://justcreative.com/2013/01/22/how-to-use-custom-fonts-with-font-face-on-wordpress/
Cheers!
YigitHey,
Could you please post WP logins here privately, we will need them. If you do not mind, please post FTP logins as well. Since we are going to work on php file, we can fix if any issue occurs:)
Best regards,
YigitJune 29, 2018 at 6:45 pm in reply to: Custom Post Type – Advanced Layout Builder – Spinning Wheel of Death #979431Hi,
Have you referred to this post – https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#alb-for-any-post-type ? :)
Regards,
YigitHi,
Thanks for the update! Let us know if you have any other questions or issues and enjoy your weekend!
Best regards,
YigitHi Andrew,
Thanks for contacting us!
Yes, it is compatible. Please make sure you are using the latest version of Enfold 4.4.1 – https://kriesi.at/documentation/enfold/how-to-install-enfold and WooCommerce.
Best regards,
YigitHi,
You can check out Kriesi’s most recent statement here – https://kriesi.at/support/topic/request-for-official-gutenberg-support-statement/#post-943629
Regards,
YigitHi,
You are welcome!
Let us know if you have any other questions or issues :)
Best regards,
YigitHey,
I changed the code to following one
// Register new icon as a theme icon function avia_add_custom_icon($icons) { $icons['spotify_icon'] = array( 'font' =>'spotify', 'icon' => 'uf328'); $icons['amazon'] = array( 'font' =>'spotify', 'icon' => 'uf270'); $icons['itunes'] = array( 'font' =>'spotify', 'icon' => 'ue800'); return $icons; } add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); // Add new icon as an option for social icons function avia_add_custom_social_icon($icons) { $icons['Spotify']='spotify_icon'; $icons['Amazon'] = 'amazon'; $icons['Itunes'] = 'itunes'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);Please review your website
Best regards,
YigitHi,
My bad! I deactivated all active plugins for testing purposes but apparently forgot to reactivate them :)
I just reactivated them. Please check your website again.Best regards,
YigitHi,
You are welcome!
Just to be clear, tab section images are fixed and long word issue is with mega menu, is that correct?
As you mentioned, titles are a bit long. You could decrease font size using following code in Enfold theme options > General Styling > Quick CSS#top #header .mega_menu_title a { font-size: 14px; }Please try this and let us know if you would like to make further adjustments :)
Best regards,
YigitHi,
In wp-config.php file, your home link was defined with “www” and that was causing the redirection issue. I edited the file and removed it. Please review your website :)
Best regards,
YigitHi,
I deleted following from the code above and it helped.
Please review your website.
Best regards,
Yigit-
This reply was modified 7 years, 8 months ago by
Yigit.
Hey,
Please try adding your custom CSS code into Style.css file of your child theme. Currently fonts cannot be found.
– Please consider using a child theme – https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#why-child-theme
– Please update Enfold to the latest version 4.4.1 – https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/. Since we have made major changes in our framework, we would recommend you to delete the theme and re-install to make sure all files are overwritten correctly. You can check out recent changes and news here – https://kriesi.at/blogRegards,
YigitHey,
Can you please post a link to your page and a screenshot showing the changes you would like to make?
While checking your other thread, i could not see any menu item used as mega menu.Cheers!
YigitHey,
Sorry for the inconvenience. When forums are busy, it may take longer and currently we are a little busy.
I replied to your thread here – https://kriesi.at/support/topic/problems-with-header-mega-menu/. Let us continue there :)Best regards,
YigitHi,
I added following code to Enfold theme options > General Styling > Quick CSS
#top .av-section-tab-title { vertical-align: top; } .av-tab-section-image { margin-bottom: 10px; }Please review your website :)
Best regards,
YigitHey,
I went to Enfold theme options and chose your frontpage and blog page. Then went to Enfold theme options > Layout Builder and checked “Show element options for developers” and then edited your columns and gave them custom CSS class and added following code to bottom of Quick CSS field
@media only screen and (max-width: 768px) { .mobile-padding { padding: 20px 0 20px 0!important; }}Please review your website :)
Regards,
YigitHi,
It seems like you have already figured it out – https://kriesi.at/support/topic/posts-unable-to-publish-or-edit/#post-979169.
If you have any other questions, let us continue on your existing thread :)Best regards,
YigitHi,
Glad you figured it out!
If you have any other questions or issues, please let us know and enjoy your weekend! :)Cheers!
YigitHi,
That is because browsers’ caching. Hard refreshing clears the cache. You can try using incognito mode :)
Best regards,
YigitJune 29, 2018 at 9:22 am in reply to: Stuck on admin message: "Attention: The last Enfold update added…." #979218Hi,
You are welcome D! Always happy to help :)
Let us know if you have any other questions or issues and enjoy your weekend!Best regards,
YigitHi,
We already have reported the issue. It should be fixed in upcoming update :)
Thanks again and enjoy your weekend!
Best regards,
YigitHi,
You are welcome!
Let us know if you have any other questions or issues and enjoy your weekend!Best regards,
YigitHey!
I changed the code to following one
//Add fixed menu to all POSTS add_action( 'ava_after_main_menu', 'ava_after_main_container_mod', 10 ); function ava_after_main_container_mod() { if( !is_single(array(15255)) ) return; $output = ''; $output .= do_shortcode(" [av_section min_height='custom' min_height_px='100px' padding='no-padding' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='bback' color='main_color' background='bg_color' custom_bg='#32a5d2' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-32zbqxs' custom_class=''] [av_textblock wrapper_element='' wrapper_element_attributes='' av_uid='av-2gpcv34' custom_class=''] [av_sidebar widget_area='HAMBURGUER' av_uid='av-bm8mys'] <div class='centrotitulo'>[page_title]</div> [/av_textblock] [/av_section] [av_hr class='invisible' height='100' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' custom_class='ajuste-espaco' admin_preview_bg='' av_uid='av-1ofdwyo'] "); return $output; }Please review your website :)
Best regards,
YigitHi,
Could you please share FTP and WP admin logins in private content field and let us know step by step how to reproduce the issue?
Nice design by the way!
Best regards,
YigitHey,
Could you please post WP admin logins here privately so we can look into it? Code needs to be adjusted and wanted to make sure icon codes are correct
Best regards,
YigitHi,
Maybe i should have been more clear and point out the CSS code in the link i posted, sorry for the confusion.
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:CSS Snippet:
#top #wrap_all .av-social-link-Spotify:hover a { color: #fff; background-color: #9fae37; } #top #wrap_all .av-social-link-Spotify a { color: #red; background-color: transparent; }Best regards,
Yigit -
This reply was modified 7 years, 8 months ago by
-
AuthorPosts
