Forum Replies Created

Viewing 30 posts - 15,271 through 15,300 (of 25,536 total)
  • Author
    Posts
  • in reply to: CSS problems with plugin "Pinpoint Booking System" #1019482

    Hi Antonio,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .main_color .DOPBSPCalendar-wrapper input[type='text'], 
    #top .main_color .DOPBSPCalendar-wrapper textarea {
        box-sizing: border-box;
    }
    
    .DOPBSPCalendar-sidebar .dopbsp-module .dopbsp-input-wrapper input[type=text].DOPBSPCalendar-check-in-view, 
    .DOPBSPCalendar-sidebar .dopbsp-module .dopbsp-input-wrapper input[type=text].DOPBSPCalendar-check-out-view {
        background: #fff url(https://www.esenciadegredos.es/wp-content/plugins/booking-system/templates/default/images/sprite.png) -5px -119px !important;
    }

    Best regards,
    Nikko

    in reply to: widgets in header area #1019466

    Hey Martine,

    I think you can use Advanced Layout Builder on product pages, however you would need to recreate the product page with all the elements.
    A workaround that you can use is to use a child theme and override the default product page and use a shortcode for Page Content to include it as a header on every product pages.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Hiding buttons and text on full screen slider #1019453

    Hi hylandgraphics,

    Try using this css code in Quick CSS:

    @media only screen and (max-width: 767px) {
      #top .avia-slideshow-button {
        float: right !important;
      }
    }

    if it doesn’t work please try to flush out the cache and check again.
    If it still doesn’t work, please don’t remove the code so we can check via a web inspector if the css code is just overriden.

    Best regards,
    Nikko

    in reply to: Adding new fonts to a custom Fontello file #1019448

    Hey scaico,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Ajax window stopped working #1019447

    Hi smoothbob,

    I’m not really sure why that’s happening on selected browsers.
    Can you try to disable other plugins you have and flush out the cache? this might help fix the issue.

    Best regards,
    Nikko

    Hi S,

    Glad to hear that. :)
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    Hi Carsten,

    For the font-size you can use the css snippets you have and it should work, if it doesn’t use the !important after the value to make sure it isn’t overriden by other css.
    As for the color, you can use the css placeholder for that:

    #top .main_color input[type="text"]::-webkit-input-placeholder {
      color: #35bcd1;
    }
    
    #top .main_color input[type="text"]::-moz-placeholder {
      color: #35bcd1;
    }
    
    #top .main_color input[type="text"]:-ms-input-placeholder {
      color: #35bcd1;
    }
    
    #top .main_color input[type="text"]:-moz-placeholder {
      color: #35bcd1;
    }

    Best regards,
    Nikko

    in reply to: Timeline feature doesn't work on iPad #1019400

    Hi vgsystems,

    What do you mean by “using responsive capabilities”? I did check it with ipad and not web inspector.
    You may try to use this css code to fix it on ipad:

    @media only screen and (min-width:768px) and (max-width: 1024px) {
      .responsive #top .avia-timeline-vertical .milestone_icon, 
      .responsive #top .avia-timeline-vertical .av-milestone-indicator, 
      .responsive #top .avia-timeline-vertical .av-milestone-icon-wrap:after {
        opacity: 1;
        transform: scale(1);
      }
    }

    Best regards,
    Nikko

    in reply to: How to display menu burger only on home page #1019397

    Hi jjsabatino,

    Glad that it worked :)


    @precarre
    : thanks for helping out :)

    Best regards,
    Nikko

    in reply to: Slow down menu fade in timer #1019158

    Hey crkapsalis,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #header #avia-menu ul.sub-menu {
        transition: all 0.7s;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Shop page can't support Enfold advanced layout editor #1019135

    Hey Jordi,

    I have added the code just below this php code in functions.php and it works fine:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Sticky Posts In Magazine Element #1019102

    Hey johnosjourney,

    Try adding this php code in functions.php:

    add_filter('avf_magazine_entries_query', 'avf_magazine_entries_query_sticky', 10, 2);
    function avf_magazine_entries_query_sticky($query, $params) {	
    	$include = array();
    	$sticky = get_option( 'sticky_posts' );
    
    	$args = array(
    		'taxonomy' => $params['taxonomy'],
    		'post__not_in' => $sticky,
    	);
    	$posts = get_posts( $args );
    
    	foreach($posts as $post) {
    		$include[] = $post->ID;
    	}
    
    	$include = array_merge($sticky, $include);
    
    	$query['post__in'] = $include;
    	$query['orderby'] = 'post__in'; // sort items based on the post__in value
    	return $query;
    }

    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: Google Page Insights shows Mobile Version was VERY lazy #1019086

    Hey patrickkb,

    This post might help for further optimization:

    Best regards,
    Nikko

    Hey DimaP,

    Sidebars doesn’t really work well with Sections since it is fullwidth thus forcing the sidebar to the bottom wrapped inside another container.
    If you already used a section, I would suggest using 2/3 column for content and 1/3 column for sidebar (widget) instead of using a page template that contains a sidebar.
    You can use this css to remove the border showing on top of the sidebar on the link you gave:

    .page-id-6206 #after_section_1 {
        border: none;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Increase size of Portfolio Grid elements #1019077

    Hi nancy2434,

    The link you gave returns a (404) Page cannot be found, please check.

    Best regards,
    Nikko

    in reply to: Full Width Slider Image Sizing Problem on Mobile #1019075

    Hi dorisa,

    Yes basically you will have 2 sliders let’s just call it slider desktop (for all screens except mobile) and slider mobile.
    If slider desktop is shown, slider mobile is hidden or vice versa, the current slider you have is the desktop with all the things I suggested to check.
    The other one: slider mobile basically has the same content and button as the slider desktop except that the slider image you put there isn’t wide (I suggest you modify it in photoshop or some image editor or just crop the part of the image you want to use and upload it to the slider). This way you can choose which part of the image you’d like to appear instead of wordpress just getting some part of the slider image which isn’t relevant.

    Best regards,
    Nikko

    in reply to: CSS problems after migration from sub-domain to root #1019069

    Hi Eoghan,

    Thanks for giving admin access.
    I’m not really sure why it’s still appearing, also in Enfold > Performance, enabling JS and CSS file merging and compression doesn’t work.
    Can you try to search and replace it in the database? if you have cpanel access you should be able to access the database also.
    Also try to delete Enfold theme entirely then upload version 4.4.1 again, maybe this will help fix the issue.

    Best regards,
    Nikko

    in reply to: Grid row text align horizontal #1019059

    Hi jjdenmark,

    Have you added this code in functions.php?

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }

    if not please add it as instructed in step 2.
    Another thing I noticed is that the grid_row folder in the child theme should be inside the shortcodes folder as instructed in step 3.
    I think everything else is correct.

    Best regards,
    Nikko

    • This reply was modified 6 years, 9 months ago by Nikko.
    in reply to: Background Video Restarts before the Slide Is Finished #1019058

    Hi raisonbrands,

    Glad to hear that!
    You should find it in the Video Background layer in your layerslider.
    The code looks like this:

    <video width="640" height="360" preload="metadata" controls muted>

    I just added the muted attribute after controls :)

    Best regards,
    Nikko

    in reply to: Timeline feature doesn't work on iPad #1018990

    Hi vgsystems,

    I tried to check this page in the demo: https://kriesi.at/themes/enfold-2017/elements/icon-list/ and it works fine.
    Can you try to disable all plugins and switch to Enfold parent theme and check if it works properly?

    Best regards,
    Nikko

    in reply to: Logo margin issue + Tab Section link issue #1018988

    Hi Lukas,

    For the first issue, try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .logo, 
    #top .logo a {
        overflow: visible !important;
    }

    For the 2nd issue, add this code at the bottom of your child theme’s function.php:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }

    then in your child theme create a folder and name it shortcodes, go to enfold > config-templatebuilder > avia-shortcodes and copy tab_section folder and paste it on the shortcodes folder you just created.
    Then modify tab_sub_section.php line 482:

    $output   = '<div data-av-tab-section-content="'.avia_sc_tab_section::$tab.'" class="av-layout-tab av-animation-delay-container '.$active_tab.' '.$meta['el_class'].' '.$extraClass.' '.avia_sc_tab_sub_section::$extraClass.'" '.$outer_style.' '.$data.' data-tab-section-id="'.$tab_link.'">';

    replace it with:

    $output   = '<div data-av-tab-section-content="'.avia_sc_tab_section::$tab.'" class="av-layout-tab av-animation-delay-container '.$active_tab.' '.$meta['el_class'].' '.$extraClass.' '.avia_sc_tab_sub_section::$extraClass.'" '.$outer_style.' '.$data.' data-tab-section-id="'.$tab_link.'" id="'.$tab_link.'">';

    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: Project portfolio element #1018961

    Hey prana3stil,

    I’m not really sure how to make it look better but you can check our demo: https://kriesi.at/themes/enfold-overview/
    and sites made in Enfold: https://kriesi.at/support/topic/enfold-showcase/
    for inspiration, you might find something that you would like to use on your site.

    Best regards,
    Nikko

    in reply to: Disable Masonry (Post) Animation #1018955

    Hey mfrangezmaribor,

    We apologize for the late response.
    Try adding this css code:

    #top .av-masonry-container .av-masonry-entry {
        clear: none !important;
    }

    Let us know if this helps.

    Best regards,
    Nikko

    Hi David,

    It’s in this function avia_events_tempalte_paths found in config.php in the enfold > config-events-calendar folder.
    You can also remove the action and that should show the ticket however it would also remove the styling.

    Best regards,
    Nikko

    in reply to: CSS problems after migration from sub-domain to root #1018893

    Hi Eoghan,

    Can you try to flush out the cache if you’re using a caching plugin?
    I checked your site and it’s still pointing on your subdomain.

    Best regards,
    Nikko

    in reply to: Product template #1018891

    Hey mike.rav,

    There’s no function to make it default.
    You have to click on Templates then load the template.

    Best regards,
    Nikko

    in reply to: Full Width Slider Image Sizing Problem on Mobile #1018888

    Hi dorisa,

    We apologize for the late response. The workaround we can suggest for that is to use 2 sliders, 1 for mobile portrait and 1 for other screens.
    Try to edit the fullwidth slider then go to screen options then check hide on very small screens.
    Then create another slider for mobile portrait and check hide on large, medium and small screens.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Icon Box Hover Effect #1018882

    Hey Uncannystevo,

    This can only be done through Quick CSS and Custom CSS Class.
    Try to check Show element options for developers found in Enfold > Layout Builder.
    For the icons for example for the facebook icon edit it and in Custom CSS Class field put: icon-fb then save.
    Go to Enfold > General Styling > Quick CSS and add this code:

    #top .icon-fb .iconbox_icon:hover {
        background-color: #3B5998 !important;
        color: white !important;
    }

    Just repeat the same process just change the class name (example icon-youtube) then on Quick CSS copy the code I gave and paste it below it then change icon-fb with icon-youtube, then just replace background color and color.
    Hope this helps.

    Best regards,
    Nikko

    Hi Tony,

    Please replace the code I gave with the one Guenni007 gave.
    That should make it work.


    @Guenni007
    thanks for helping out.

    Best regards,
    Nikko

    in reply to: Yet another: Mobile friendly for higher resolution #1018540

    Hi racekatten,

    Glad that you made the fix.
    I think the solution you made is great another solution is just basically the same just override it in Quick CSS.
    Let us know if you need further assistance.
    Thanks for using Enfold and have a great weekend :)

    Best regards,
    Nikko

Viewing 30 posts - 15,271 through 15,300 (of 25,536 total)