Forum Replies Created

Viewing 30 posts - 27,811 through 27,840 (of 35,026 total)
  • Author
    Posts
  • in reply to: I never had problems this bad. #952193

    Hi,
    Thanks, I was able to login, can I ask, when you speak of the search results, do you mean the dropdown, or the results? Because in my tests the results result in not found for random searches, but the dropdown seems to offer the best available results, even with no direct match.

    Best regards,
    Mike

    in reply to: Separators not working #952192

    Hi,
    Thank you, I was able to login, but I was unable to add the debugger code to run some tests.
    I got an error that the functions.php needs to be edited via sftp.
    Pleas add this code, or provide ftp access:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    	return "debug";
    }
     

    Please add under:

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

    thanks

    Best regards,
    Mike

    in reply to: Trouble finding autoRewind in Avia.js #952190

    Hi,
    I had to view it twice to catch all of the papers going back on, Can you please include a admin login in the private content area so we can take a closer look.
    Or export the slider so we can check locally?

    Best regards,
    Mike

    in reply to: why the second language site's menu looks different? #952188

    Hi,
    I found that saving the menu item as with the check box “Use as Mega Menu” checked solved. Please see screenshot in Private Content area and Please clear your cache and check.

    Best regards,
    Mike

    in reply to: Layerslider not showing after update to [4.3.1] #952187

    Hi,

    @BlutVampir

    Thanks for your effort, but this doesn’t work for my test environment. (windows localhost)
    But it may work for some as a good option while waiting for the official fix.
    The adding a layerslider and hiding it with “display:none: does work for me though, which is another option.

    Best regards,
    Mike

    in reply to: Javascript file merging and compression #952090

    Hi,
    To remove the debugging info, Try adding this code to the end of your functions.php file in Appearance > Editor:

    //Remove Avia Framework debug information
    	if(!function_exists('avia_debugging_info')){
    		function avia_debugging_info() {
    		  // 
    		}
    	  } 

    Best regards,
    Mike

    in reply to: Make Header Opaque (but keep active menu indicator) #952088

    Hey Fiona,
    The following code for your General Styling > Quick CSS field, adds the active menu indicator to “Minimal with Drop Shadow”
    Please adjust the colors to suit.

    .av_minimal_header .av-main-nav li:hover .avia-menu-fx,.av_minimal_header .current-menu-item > a > .avia-menu-fx,.av_minimal_header .av-main-nav li:hover .current_page_item > a > .avia-menu-fx {
        opacity: 1 !important; 
        visibility: visible !important; 
        background-color: #9cc2df !important; 
        color: #ffffff;
        border-color: #7aa0bd !important; 
        display: block !important;
    }

    If you are still having trouble please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Change tab image size #952083

    Hey Kiwilein,
    1: Try this code in the General Styling > Quick CSS field:

    #top.page-id-5243 .av-tab-image-rounded .av-tab-section-image {
        width: 120px !important; 
    }

    adjust to suit.
    2: Unfortunately, that’s not possible at the moment. Please request for the feature here.
    One workaround is to hide the tab section on mobile and then replace it with a different element (ex. tabs or accordion) using the same content. Use the elements’ Screen Options.

    Best regards,
    Mike

    in reply to: Sidebar blog #952081

    Hi,
    Try this code in the General Styling > Quick CSS field:

    #top.page-id-1603 .flex_column.avia-builder-el-4 {
        margin-left: 30px !important; 
    }

    This is designed to work on the one page, let us know if you need it to work on more pages. Also it would me a good idea to add a custom class or ID to the widget column, if you do please use it to replace “.avia-builder-el-4” in the code.
    Please feel free to adjust to suit.

    Best regards,
    Mike

    in reply to: Layerslider stopped working #951998

    Hi,
    The LayerSlider will not show in the list, as it’s a bundled plugin.
    I see the LayerSlider is working on the homepage, and testing on a new test page also works, please see link in Private Content area.
    Can you please point to where it was not working?
    I also see you are using Enfold v4.1.2

    Best regards,
    Mike

    in reply to: Plugins compatibility #951997

    Hey Rafa,
    While I don’t have first hand knowledge of these plugins, I found these posts:
    Mailster email plugin clash
    Urgent – Ninja Popups plugin – SJ conflict
    popup breaks Enfold

    Best regards,
    Mike

    in reply to: Cannot logout of support site #951996

    Hi,
    Have you tried using incognito mode to login? What is your OS?

    Best regards,
    Mike

    in reply to: Funky Activity on BLOG since upgrading to 4.3.1 #951995

    Hey Justin,
    Can you please link to the sites so we can take a closer look at the images.
    I hate to ask, but have to tried disabling your plugins? Only because we don’t see this error on our demo.
    Anyways, we’ll be able to see more from the links.
    As for the first client we’ll need a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Colour Section Centered #951994

    Hey sjidesign,
    Please try this code in the General Styling > Quick CSS field:

    #welcomepanel {
        width: 85%!important; 
        max-width: 85%!important;
    margin-left: 7.1% !important; 
    }

    Please see screenshot in Private Content area for expected results.

    Best regards,
    Mike

    in reply to: Problem with menu – change of look #951990

    Hey fkadmin99,
    I see that you are using Enfold v3.8, can I ask what changed lately, did you update a plugin?
    Try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.

    Best regards,
    Mike

    in reply to: Contact form does not work #951989

    Hi,
    Can I ask if you are using the Disable Template Builder Elements options? Please try to “Always load all elements”
    It seems you have some scripts not loading, Please see screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: element gallery #951988

    Hey tecnicoposiciona,
    Please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: Archive Pages #951987

    Hey Viktoria,
    Please try adding this to your functions.php:

    //change category page layout to blog grid style
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'blog-grid';
    return $layout;
    }
    

    Best regards,
    Mike

    in reply to: Google Maps Platform #951985

    Hi,
    From the latest Google release, sites will have “25,000 free map loads per day” The new charge should not affect very many.

    The Google Maps Web APIs (Maps JavaScript API, Maps Static API, or Street View API) offer 25,000 free map loads per day. If you enable billing to access higher quotas, you are billed $0.50 USD per 1,000 map loads over the daily limit of 25,000, up to a maximum of 100,000 map loads daily.

    Source
    Hope this helps.

    Best regards,
    Mike

    in reply to: Quick CSS for checkout page modifications #951982

    Hey web6s,
    I’m sorry, your check out looks nothing like the example on the post, perhaps you have more code already in play?
    Perhaps if you could remove any other code.
    This seems we are re-designing a woocommerce page vs helping with the theme?

    Best regards,
    Mike

    in reply to: Website Lanauge #951980

    Hey hgrantdesigns,
    I believe you need to use a Hebew font, and that is why you see ???
    Please try: Hebrew Font plugin

    Best regards,
    Mike

    in reply to: overall spacing #951621

    Hey fgrippe,
    Typically the separators have a top & bottom margin of 30px by default. You can remove this will css, or you can not use the separators and control the spacing by adding padding or margin to the text blocks directly. Please link to a example page with a spacing mockup so we can demonstrate.
    Please note that “exactly” across browsers & devices are best achieved using percentages of the browser & device, which in reality is not “exact”, but very close.

    Best regards,
    Mike

    in reply to: Removing date from the frontpage/blog #951616

    Hey Petersjuul,
    Try this code in the General Styling > Quick CSS field:

    #top.home .av-magazine-time.updated {display: none !important;}

    Best regards,
    Mike

    in reply to: gTranslate causes problems with Hotspot Images #951613

    Hi,
    Glad Rikard was able to help, shall we close this then?

    Best regards,
    Mike

    in reply to: Problem with Adsense #951611

    Hey bboyguil,
    In your second link your ads show after I disable “Adblock Plus” in my browser, perhaps you can not see the ads due to a ad block browser plugin?
    Please note that your first link is going to have very low conversions due to the site is only viewed with “Flash”, which most people will not enable, just my experience.
    I hope the translate reads this well.

    Best regards,
    Mike

    in reply to: Color section with one half column full width #951602

    Hey Kavvermus,
    Thank you for the link, but I’m not sure I’m imagining your vision correctly.
    You would like a image in the second half of the second section where the diagonal boarder is?
    If so please try adding the image as a background to the color section.
    Please see this mockup:
    2018-05-04_063731
    2018-05-04_064131
    If this is not what you meant, please try including a mockup.

    Best regards,
    Mike

    in reply to: Video & other issue #951587

    Hey vandrea,
    I see you are using Enfold v4.2.6, please update to v3.1 via ftp, which fixes a few small errors and will help.
    Please note that you should remove the theme folder “enfold” via ftp before adding the new one, so old files are not left behind. Please do not try to overwrite your theme folder with the new one.
    This will solve the number of css stylesheet, as the newer version mergers them, Please read this post: PERFORMANCE UPDATE
    After you update we will look again at your video/column issue.

    Best regards,
    Mike

    in reply to: Enfold child theme add google analytics code #951578

    Hey ST,
    The best approach to adding Google Analytics is by adding the code in Enfold Theme Options > Google Services > Google Analytics Tracking Code box.
    This works whether you use a child theme or not, and it stays active after updates.
    But if you really want to place it in a header.php, then copy header.php to your child theme via FTP & it will be active automatically.
    Another option is to include your Google Analytics code in this function and add it to your child theme functions.php:

    function add_ga_code(){
    ?>
    YOUR Google Analytics CODE GOES HERE 
    <?php
    }
    add_action('wp_head', 'add_ga_code');

    Best regards,
    Mike

    in reply to: slider #951547

    Hey frosch178,
    Bitte versuchen Sie es mit dem “Easy Slider” und wählen Sie in den Optionen “Autorotation aktiv” = “Nein”
    ——-
    Please try using the “Easy Slider” and in the options choose “Autorotation active” = “No”
    2018-05-04_052429
    2018-05-04_052815

    Best regards,
    Mike

    in reply to: Contact form does not work #951537

    Hey finon,
    In my test I don’t see an error message, please try using the plugin WP Mail Logging as it will help discover errors.
    Also Try disabling your plugins.
    After you install it, try to send a message and view the log. If you wish more assistance, please include a admin login in the private content area so we can take a closer look.
    Have you changed webhosts since it last worked?

    Best regards,
    Mike

Viewing 30 posts - 27,811 through 27,840 (of 35,026 total)