Viewing 30 results - 78,991 through 79,020 (of 142,897 total)
  • Author
    Search Results
  • #801224
    olauno
    Participant

    Hello to all I have the following code below for the all site notice. Though the red background does not work in google chrome.
    Any specific issue or possible code I could use. Any idea or help would greatly be appreciated.

    p.demo_store {
    background-color: #FF0000 !important;
    font-size: 2em !important;
    text-align: center !important;
    color: #000000 !important;
    }
    body.woocommerce-demo-store #wrap_all {
    margin-top: 20px !important;
    }
    body:not(.woocommerce) .demo_store {
    display: none !important;
    }

    #801223

    Hey siagameplay,

    Please see the following thread for direction on how you should be able to accomplish this:

    Best regards,
    Jordan Shannon

    No, the menu is fine. I do not want to hide or change it.
    I want to make a section in the Home that is only seen on the desktop and make another section that is only seen on the mobile.
    Read my previous message well.
    Can I hide a section on the desktop?
    Thank you

    #801194
    Rosa Moliner Gilberga
    Guest

    Hi,
    We have your theme Enfold in our website remeiets.cat, and want to know how to put a full (non collapsible) searcher in the center of top menu, as in this example: https://www.pccomponentes.com/.
    We have bought pluggin YITH WooCommerce Ajax Search.

    Let us know,

    Thanks,

    Rosa

    Try this in functions.php of your child theme: https://kriesi.at/support/topic/datepicker-only-allow-dates-in-the-future/#post-774083

    function my_datepicker_defaults() {
    ?>
     <script type="text/javascript">
    	jQuery(document).ready(function(){ 
    		jQuery.datepicker.setDefaults({
    		minDate: 0,
    		maxDate: "+12m"
           		});
      	});   
     </script>
    <?php
    }
    add_action('wp_footer', 'my_datepicker_defaults', 20);

    minDate: 0 means only future Dates are possible.
    maxDate: +12m means only 12 month are available to choose from today.
    Rest of explanation read on the link above (a bit brainstorming)

    • This reply was modified 8 years, 10 months ago by Guenni007.
    #801154

    Hey Luis Miguel,

    Please refer to my post here – https://kriesi.at/support/topic/increasing-size-of-thumbnails-in-recent-post-at-the-sidebars/#post-703036 :)

    Best regards,
    Yigit

    Hi,

    Please try adding following code to Quick CSS

     .avia-caption-title, .avia_transform .av_fullscreen .avia-caption-content, #top .avia-slideshow-button {
       font-family: 'Open Sans Hebrew'!important; 
    }

    Best regards,
    Yigit

    #801137

    In reply to: Mobile Secondary Menu

    Perfect! Thank you! How do I increase the space between the text on the top line?

    Shalom,

    You can add following selectors into plugin settings

    .avia-caption-title, .avia_transform .av_fullscreen .avia-caption-content, #top .avia-slideshow-button

    Best regards,
    Yigit

    #801127
    sitesme
    Participant

    Hi

    I found the following post https://kriesi.at/support/topic/portfolio-grid-spacing/ and this worked, to add some white space between portfolio grid items.

    However, this is colliding with my 3rd column in the footer which is now going below the 2nd footer column.
    If I delete the code from the post, everything goes back to normal.

    The webpage is in PVT

    Thank you all.

    #801121

    In reply to: Accordion animation

    Hey Luisgasser,

    Try adding this in your child theme’s style.css or in Quick CSS:

    .active_tc.toggle_wrap {
        display: none;
    }

    Then add this code to functions.php (this is for toggles that are opened by default which is affected by the css I gave above):

    function add_custom_script(){
    ?>
    <script type="text/javascript">
    (function($){
    	function custom_toggle() {
    		jQuery("#top").find(".active_tc.toggle_wrap").css("display","block");
    	}
    
    	custom_toggle();
    })(jQuery);
    </script>
    <?php 
    }
    add_action('wp_footer', 'add_custom_script');

    Let us know if this helps :)

    Best regards,
    Nikko

    #801118

    Topic: stop sliding caption?

    in forum Enfold
    Chris_85
    Participant

    ‘Hi,

    i use a caption for the image slider. Is it possible to “switch of” the sliding caption. At the moment the captions comes from right or left afer the image was loaded. Is it possible that the caption appears without a effect?

    i look forward to hear from you
    best regards

    #801103

    great that worked! I am still seeing a bad flickering on my landing page where the mega menu is on top of the slideshow. Any way to fix that? It’s very annoying, and I can’t tell whether it’s an issue only with my chrome, or if it’s widespread. Happened after the last update I think

    #801094

    great that worked! I am still seeing a bad flickering on my landing page where the mega menu is on top of the slideshow. Any way to fix that? It’s very annoying, and I can’t tell whether it’s an issue only with my chrome, or if it’s widespread. Happened after the last update I think

    • This reply was modified 8 years, 10 months ago by Munford.
    #801090

    Hi,

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 767px) {
    .responsive #top .avia-slideshow-controls a {
        display: inline-block;
    }}

    Best regards,
    Yigit

    #801087

    Below is my child theme function.php code as it is now – should I just replace the middle text I have in bold – starting with: avia_nav_menus(); and ending with: ‘wp_change_aviajs’, 100 ); – with the code you linked to above? The avia.js file has been overwritten – or should have been, right? Do I need to do anything with that?
    thanks
    Nancy

    <?php

    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */

    /*===ADD custom css class element to all pages===*/
    add_theme_support(‘avia_template_builder_custom_css’);

    /*==========MAG ELEMENT add excerpt under title all===========*/

    add_filter(‘avf_portfolio_cpt_args’, ‘avf_portfolio_add_custom_fields’, 1);
    function avf_portfolio_add_custom_fields($args) {
    $args[‘supports’] = array(‘title’,’thumbnail’,’excerpt’,’editor’,’comments’, ‘custom-fields’, ‘page-attributes’);
    return $args;
    }

    $default_sidebar = false;
    $parent = get_the_title($post->post_parent);
    $parentlink = get_the_permalink($post->post_parent);
    $sidebar_menu .= “<nav class=’widget widget_nav_menu $display_child_pages’><ul class=’nested_nav’>”;
    $sidebar_menu .= “<h3 class=’widgettitle’>$parent</h3>”;
    $sidebar_menu .= $children;
    $sidebar_menu .= “</nav>”;

    avia_nav_menus(); function avia_nav_menus() { global $avia_config, $wp_customize; $avia_config[‘nav_menus’] = array( ‘avia’ => array(‘html’ => __(‘Main Menu’, ‘avia_framework’)), ‘avia2’ => array( ‘html’ => __(‘Secondary Menu <br/><small>(Will be displayed if you selected a header layout that supports a submenu here)</small>’, ‘avia_framework’), ‘plain’=> __(‘Secondary Menu – will be displayed if you selected a header layout that supports a submenu’, ‘avia_framework’)), ‘avia3’ => array( ‘html’ => __(‘Footer Menu <br/><small>(no dropdowns)</small>’, ‘avia_framework’), ‘plain’=> __(‘Footer Menu (no dropdowns)’, ‘avia_framework’)), ‘avia_responsive’ => array( ‘html’ => __(‘Responsive Menu <br /><small>(If set will replace your main menu on mobiles)</small>’)) ); add_theme_support(‘nav_menus’); foreach($avia_config[‘nav_menus’] as $key => $value) { $name = (!empty($value[‘plain’]) && !empty($wp_customize)) ? $value[‘plain’] : $value[‘html’]; register_nav_menu($key, THEMENAME.’ ‘.$name); } } add_action( ‘ava_after_main_menu’, ‘enfold_customization_add_responsive_menu’ ); function enfold_customization_add_responsive_menu() { echo “<nav style = ‘display:none;’ class=’main_menu_responsive’ data-selectname='”.__(‘Select a page’,’avia_framework’).”‘ “.avia_markup_helper(array(‘context’ => ‘nav’, ‘echo’ => false)).”>”; $avia_theme_location = ‘avia_responsive’; $avia_menu_class = $avia_theme_location . ‘-menu’; $args = array( ‘theme_location’ => $avia_theme_location, ‘menu_id’ => $avia_menu_class, ‘menu_class’ => ‘menu av-main-nav’, ‘container_class’ => $avia_menu_class.’ av-main-nav-wrap’.$icon_beside, ‘fallback_cb’ => false, ‘walker’ => new avia_responsive_mega_menu() ); wp_nav_menu($args); echo ‘</nav>’; }

    /*make sure MEGA MENU mobile functions after avia js file changes*/

    function wp_change_aviajs() {
    wp_dequeue_script( ‘avia-default’ );
    wp_enqueue_script( ‘avia-default-child’, get_stylesheet_directory_uri().’/js/avia.js’, array(‘jquery’), 2, true );
    }
    add_action( ‘wp_print_scripts’, ‘wp_change_aviajs’, 100 );

    add_filter(‘widget_text’, ‘do_shortcode’);

    /*==============GOOGLE FONTS ADD=================*/
    function add_oswald_script(){
    ?>
    <link href=’http://fonts.googleapis.com/css?family=Oswald:400,700,300&#8242; rel=’stylesheet’ type=’text/css’>
    <?php
    }
    add_action(‘wp_head’, ‘add_oswald_script’);

    /*FIX MEGA MENU not closing on ipad issue https://kriesi.at/support/topic/closing-mega-menu-on-ipad/*/

    function add_custom_megamenu(){
    ?>
    <script>
    jQuery(window).load(function(){
    if (jQuery(window).width() <= 1024){
    jQuery(“#header”).click(function(){
    jQuery(“.avia_mega_div”).toggle();
    });
    }
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘add_custom_megamenu’);

    //set builder mode to debug
    add_action(‘avia_builder_mode’, “builder_set_debug”);
    function builder_set_debug()
    {
    return “debug”;
    }

    /*edit Advanced Layout Builder elements*/
    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;
    }

    /*FIX MISSING REVISIONS*/

    add_filter(‘avf_portfolio_cpt_args’,’avia_add_portfolio_revision’, 10, 1);
    function avia_add_portfolio_revision($args)
    {
    $args[‘supports’] = array(‘title’,’thumbnail’,’excerpt’,’editor’,’comments’,’revisions’);
    return $args;
    }

    • This reply was modified 8 years, 10 months ago by Munford.
    #801085

    In reply to: Mobile menu search

    Shalom Nick,

    Please change the code in Functions.php file to following one

    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    if ($args->theme_location == 'avia' && wp_is_mobile())
    {
    $search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-18 current_page_item menu-item-top-//level menu-item-top-level-5">'.get_search_form(false).'';
    $items = $search . $items;
    }
    return $items;
    }
    
    

    Best regards,
    Yigit

    #801075

    Hi,

    Can you please do not use that solution but use following one instead to display different menu on mobile – https://kriesi.at/support/topic/change-mobile-menu-2/#post-784018
    You should simply replace “main-menu-mobile” with the name of your mobile menu and “main-menu” with the name of your desktop menu

    Best regards,
    Yigit

    #801073

    Hi,

    Thanks for providing the access. Can you try to check it again? I have activated back Simple Custom CSS plugin and added the code I gave:

    #top.single-portfolio .avia-slideshow-inner {
        height: auto !important;
    }

    since the one you added in Quick CSS, is not reflecting on the css (link to css in private content), it’s still using the cached version even though you don’t have plugins activated, I think it’s godaddy’s cache. Let us know if it’s good on your end :)

    Best regards,
    Nikko

    #801072

    In reply to: Different blog layout

    Hi Joakim,

    Great, glad we could help :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #801054

    Hi,

    Try to replace the code I gave with this one:

    .page-id-3294 #plugins .avia-icon-list li .iconlist_icon, .page-id-3294 #plugins .avia-icon-list li .article-icon-entry {
        float: none;
        display: inline-block;
        vertical-align: top;
        max-width: 90%;
    }

    Hope this helps. :)

    Best regards,
    Nikko

    #801046

    In reply to: slider border

    Hi,

    Please edit your Color Section with ID “about” and choose not to display top border :)

    Best regards,
    Yigit

    #801044

    In reply to: replace search icon

    Hi,

    Please refer to my post here – https://kriesi.at/support/topic/lightbox-for-mailchimp-form/#post-582439

    Best regards,
    Yigit

    Hi,

    Glad we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #801007

    Hey,

    you can close the topic. Thanks!

    Best regards,
    Anna

    #801006

    Hi,

    Great, glad you got it working and thanks for sharing :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #801002

    In reply to: Disable comments

    Hi,

    I edited your posts and clicked “Screen options” on the top right corner and checked “Discussion” and then scrolled below your post and disabled discussion. Discussion settings on single blog posts overwrite general settings. You may need to edit your posts that contain comment section and to disable them :)

    Best regards,
    Yigit

    #800990

    Hi,

    Great, glad we could help :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #800975

    In reply to: Video not showing

    I try to deactive all the plugins but the site stop working and even when I reactive the plugin one by one the video do not show.

    Giulia

Viewing 30 results - 78,991 through 79,020 (of 142,897 total)