Viewing 30 results - 82,831 through 82,860 (of 142,737 total)
  • Author
    Search Results
  • Hi!

    This is NOT true as I am using CPT UI now and this does work as it should. The CPT shows up and I can select it and shows on front end.

    How did you manage to display the custom post type in the Portfolio Grid element? The only option available is the “portfolio_entries” taxonomy selection.

    I am a developer so if you provide me with the info I need I can get it working myself.

    Ok. You can find the shortcode elements in the config-templatebuilder > aviashortcodes directory. Look for the portfolio.php file if you want to modify the portfolio grid element and the blog.php file for the blog posts element.

    Next thread: https://kriesi.at/support/topic/custom-post-type-not-appearing-in-posts-dropdown-in-portfolio-grid-element/#post-761405

    Regards,
    Ismael

    herbie4
    Participant

    Just wondering if there is any way of getting the CPT from Toolset Types to show inside the editor option list. I have used the following:

    // add the custom posttypes to the builder elements
    add_theme_support('add_avia_builder_post_type_option');
    add_theme_support('avia_template_builder_custom_post_type_grid');

    But the cpt from Types does not show up in the list. All other CPTfrom woocommerce and other plugins are there just not from Types plugin.
    Is there any sollution to this other than switching to CPT UI plugin. Please advice.

    Already opened a support ticket at Toolset In short:

    Types follows all WordPress standards in creating these custom post types.
    I would open up a thread with the Enfold team and report this incompatibility.

    Hope to get a solution as I like to use Enfold but also need to use Toolset Types.

    Hi,

    That is because of following custom CSS code you have

    @media only screen and (min-width: 1001px) { 
    .html_header_sidebar .logo {
        position: relative;
        clear: both;
        padding-top: 20px;
        padding-right: 30px;
        padding-bottom: 20px;
        padding-left: 30px;
        height: 25vh !important;
    }}

    Can you please try increasing “1001px” value?

    Best regards,
    Yigit

    #761384

    ok – so geht es ja jetzt

    PPS:

    setze mal in quick css:

    #mobile-advanced {
        background-image: url("http://ahlers-vogel1.x-production.com/wp-content/uploads/2016/10/Ahlers-Vogel_Logo.png");
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 40% auto;
        padding: 10% 0 !important;
    }

    und schau dann in das mobile menu rein
    eventuell nimmt man da auf Grund deines grauen Hintergrundes ein anderes Logo ( ganz Weiss vielleicht oder composite)

    your welcome

    #761375

    Hey JPOsteen!

    Thank you for using Enfold.

    Is this the same issue here?

    // https://kriesi.at/support/topic/remove-top-border-from-fullwidth-submenu/#post-759754

    Cheers!
    Ismael

    #761364

    Hi,

    Glad that you found a workaround. Just point to this thread if you create a new one that is still related to this topic. :)

    Best regards,
    Nikko

    #761362

    Hi,
    Ok got it fixed. Below the code. This is a quick fix and might not be the most straightforward one.

    Create a file in your child template folder/shortcodes/tabs.php

    <?php
    if ( !class_exists( 'avia_sc_tab' ) )
    {
        class avia_sc_tab extends aviaShortcodeTemplate
        {
            static $tab_id = 1;
            static $counter = 1;
            static $initial = 1;
    
            /**
             * Create the config array for the shortcode button
             */
            function shortcode_insert_button()
            {
                $this->config['name']		= __('Tabs', 'avia_framework' );
                $this->config['tab']		= __('Content Elements', 'avia_framework' );
                $this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-tabs.png";
                $this->config['order']		= 75;
                $this->config['target']		= 'avia-target-insert';
                $this->config['shortcode'] 	= 'av_tab_container';
                $this->config['shortcode_nested'] = array('av_tab');
                $this->config['tooltip'] 	= __('Creates a tabbed content area', 'avia_framework' );
            }
    
            function extra_assets()
            {
                if(is_admin())
                {
                    $ver = AviaBuilder::VERSION;
                    wp_enqueue_script('avia_tab_toggle_js' , AviaBuilder::$path['assetsURL'].'js/avia-tab-toggle.js' , array('avia_modal_js'), $ver, TRUE );
                }
            }
    
            /**
             * Popup Elements
             *
             * If this function is defined in a child class the element automatically gets an edit button, that, when pressed
             * opens a modal window that allows to edit the element properties
             *
             * @return void
             */
            function popup_elements()
            {
                $this->elements = array(
    
                    array(
                        "name" 	=> __("Tab Position", 'avia_framework' ),
                        "desc" 	=> __("Where should the tabs be displayed", 'avia_framework' ),
                        "id" 	=> "position",
                        "type" 	=> "select",
                        "std" 	=> "top_tab",
                        'container_class' =>"avia-element-fullwidth",
                        "target"  => array('#aviaTBcontent-form-container', 'class'),
                        "subtype" => array( __('Display tabs at the top', 'avia_framework' ) =>'top_tab',
                            __("Display Tabs on the left", 'avia_framework' ) => 'sidebar_tab sidebar_tab_left',
                            __("Display Tabs on the right", 'avia_framework' ) => 'sidebar_tab sidebar_tab_right')
                    ),
    
                    array(
                        "name" 	=> __("Boxed Tabs", 'avia_framework' ),
                        "desc" 	=> __("Do you want to display a border around your tabs or without border", 'avia_framework' ),
                        "id" 	=> "boxed",
                        "type" 	=> "select",
                        "std" 	=> "no",
                        "required" => array('position','contains','sidebar_tab'),
                        "subtype" => array(
                            __('With border',  'avia_framework' ) =>'border_tabs',
                            __('Without border',  'avia_framework' ) =>'noborder_tabs')),
    
                    array(
                        "name" => __("Add/Edit Tabs", 'avia_framework' ),
                        "desc" => __("Here you can add, remove and edit the Tabs you want to display.", 'avia_framework' ),
                        "type" 			=> "modal_group",
                        "id" 			=> "content",
                        'container_class' =>"avia-element-fullwidth avia-tab-container",
                        "modal_title" 	=> __("Edit Form Element", 'avia_framework' ),
                        "std"			=> array(
    
                            array('title'=>__('Tab 1', 'avia_framework' )),
                            array('title'=>__('Tab 2', 'avia_framework' )),
    
                        ),
    
                        'subelements' 	=> array(
    
                            array(
                                "name" 	=> __("Tab Title", 'avia_framework' ),
                                "desc" 	=> __("Enter the tab title here (Better keep it short)", 'avia_framework' ) ,
                                "id" 	=> "title",
                                "std" 	=> "Tab Title",
                                "type" 	=> "input"),
    
    						array(
                                "name" 	=> __("Tab Symbol", 'avia_framework' ),
                                "desc" 	=> __("Should an icon or image be displayed at the top of the tab title?", 'avia_framework' ),
                                "id" 	=> "icon_select",
                                "type" 	=> "select",
                                "std" 	=> "no",
                                "subtype" => array(
                                    __('No icon or image',  'avia_framework' ) =>'no',
                                    __('Display icon',  'avia_framework' ) =>'icon_top',
                                    __('Display image',  'avia_framework' ) =>'image_top')),
    
                            array(
                                "name" 	=> __("Tab Icon",'avia_framework' ),
                                "desc" 	=> __("Select an icon for your tab title below",'avia_framework' ),
                                "id" 	=> "icon",
                                "type" 	=> "iconfont",
                                "std" 	=> "",
                                "required" => array('icon_select','equals','icon_top')
                            ),
                            
                            array(
    									"name" 	=> __("Tab Image",'avia_framework' ),
    									"desc" 	=> __("Either upload a new, or choose an existing image from your media library",'avia_framework' ),
    									"id" 	=> "tab_image",
    									"type" 	=> "image",
    									"fetch" => "id",
    									"secondary_img" => true,
    									"force_id_fetch"=> true,
    									"title" =>  __("Insert Image",'avia_framework' ),
    									"button" => __("Insert",'avia_framework' ),
    									"required" => array('icon_select','equals','image_top'),
    									"std" 	=> ""),
    					
    						
    						array(
                                "name" 	=> __("Tab Image Style", 'avia_framework' ),
                                "id" 	=> "tab_image_style",
                                "type" 	=> "select",
                                "std" 	=> "",
    							"required" => array('icon_select','equals','image_top'),
                                "subtype" => array(
                                    __('No special style',  'avia_framework' ) =>'',
                                    __('Rounded Borders',  'avia_framework' ) =>'av-tab-image-rounded',
                                    __('Circle',  'avia_framework' ) =>'av-tab-image-circle',
                                   )),
    						
    						
    					array(
    							"type" 	=> "close_div",
    							'nodescription' => true
    						), 
    
                            array(
                                "name" 	=> __("Tab Content", 'avia_framework' ),
                                "desc" 	=> __("Enter some content here", 'avia_framework' ) ,
                                "id" 	=> "content",
                                "type" 	=> "tiny_mce",
                                "std" 	=> __("Tab Content goes here", 'avia_framework' ),
                            ),
    
                        )
                    ),
    
                    array(
                        "name" 	=> __("Initial Open", 'avia_framework' ),
                        "desc" 	=> __("Enter the Number of the Tab that should be open initially.", 'avia_framework' ),
                        "id" 	=> "initial",
                        "std" 	=> "1",
                        "type" 	=> "input"),
    
                );
    
                if(current_theme_supports('avia_template_builder_custom_tab_toogle_id'))
                {
                    $this->elements[2]['subelements'][] = array(
                        "name" 	=> __("For Developers: Custom Tab ID",'avia_framework' ),
                        "desc" 	=> __("Insert a custom ID for the element here. Make sure to only use allowed characters.",'avia_framework' ),
                        "id" 	=> "custom_id",
                        "type" 	=> "input",
                        "std" 	=> "");
                }
    
            }
    
            /**
             * Editor Sub Element - this function defines the visual appearance of an element that is displayed within a modal window and on click opens its own modal window
             * Works in the same way as Editor Element
             * @param array $params this array holds the default values for $content and $args.
             * @return $params the return array usually holds an innerHtml key that holds item specific markup.
             */
            function editor_sub_element($params)
            {
                $template = $this->update_template("title", "{{title}}");
                $content  = $this->update_template("content", "{{content}}");
    
    			extract(av_backend_icon($params)); // creates $font and $display_char if the icon was passed as param "icon" and the font as "font" 
                
    			
                $params['innerHtml']  = "";
                $params['innerHtml'] .= "<div class='avia_title_container'>";
                /*$params['innerHtml'] .= "	<span ".$this->class_by_arguments('icon_select' ,$params['args']).">";
    			$params['innerHtml'] .= "		<span ".$this->class_by_arguments('font' ,$font).">";
                $params['innerHtml'] .= "			<span data-update_with='icon_fakeArg' class='avia_tab_icon' >{$display_char}</span>";
                $params['innerHtml'] .= "		</span>";
                $params['innerHtml'] .= "	</span>";*/
                $params['innerHtml'] .= "	<span class='avia_title_container_inner' {$template} >".$params['args']['title']."</span>";
                $params['innerHtml'] .= "</div>";
    
                $params['innerHtml'] .= "<div class='avia_content_container' {$content}>".stripcslashes( $params['content'] )."</div>";
    
                return $params;
            }
    
            /**
             * Frontend Shortcode Handler
             *
             * @param array $atts array of attributes
             * @param string $content text within enclosing form of shortcode element
             * @param string $shortcodename the shortcode found, when == callback name
             * @return string $output returns the modified html string
             */
            function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
            {
                $atts =  shortcode_atts(array('initial' => '1', 'position' => 'top_tab', 'boxed'=>'border_tabs'), $atts, $this->config['shortcode']);
                extract($atts);
    
                $boxed   = $position != "top_tab" ? $boxed : "";
                $output  = '<div class="tabcontainer  '.$position.' '.$boxed.' '.$meta['el_class'].'">'."\n";
                $counter = 1;
    
                avia_sc_tab::$counter = 1;
                avia_sc_tab::$initial = $initial;
    
                $output .= ShortcodeHelper::avia_remove_autop($content, true);
    
                $output .= '</div>'."\n";
    
                return $output;
            }
    
            function av_tab($atts, $content = "", $shortcodename = "")
            {
                
                $output = $titleClass  = $contentClass = $icon = "";
                $tab_atts = shortcode_atts(array('title' => '', 'icon_select'=>'no', 'icon' =>"", 'custom_id' =>'', 'font' =>'', 'custom_markup' => '','tab_image' =>"",'tab_image_style' =>""), $atts, 'av_tab');
                
    				$display_char 	= av_icon($tab_atts['icon'], $tab_atts['font']);
    				$icon			= "";
    				$image 			= "";
    
                if(is_numeric(avia_sc_tab::$initial) && avia_sc_tab::$counter == avia_sc_tab::$initial)
                {
                    $titleClass   = "active_tab";
                    $contentClass = "active_tab_content";
                }
    
                if(empty($tab_atts['title']))
                {
                    $tab_atts['title'] = avia_sc_toggle::$counter;
                }
    
                /*if($tab_atts['icon_select'] == "yes")
                {
                    $icon = "<span class='tab_icon' {$display_char}></span>";
                }*/
    			if($tab_atts['icon_select'] == "icon_top")
    	            {
    	                //avia_sc_tab_section::$tab_icons[ avia_sc_tab_section::$tab ] = "<span class='av-tab-section-icon' {$display_char}></span>";
    	            $myccicon ="<span class='av-tab-section-icon maxwwicon' {$display_char}></span>";
    				}
    	            
    	            if($tab_atts['icon_select'] == "image_top")
    	            {
    	            	if(!empty($tab_atts['tab_image']))
    	            	{
    	            		$src = wp_get_attachment_image_src($tab_atts['tab_image'], 'square');
    	            		
    	            		if(!empty($src[0])){
    	            	    	$myccimage = "<img class='av-tab-section-image' src='".$src[0]."' alt='' title='' />";
    						}
    					}
    				}
    
                if(empty($tab_atts['custom_id']))
                {
                    $tab_atts['custom_id'] = 'tab-id-'.avia_sc_tab::$tab_id++;
                }
    
                $markup_tab = avia_markup_helper(array('context' => 'entry','echo'=>false, 'custom_markup'=>$tab_atts['custom_markup']));
                $markup_title = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'custom_markup'=>$tab_atts['custom_markup']));
                $markup_text = avia_markup_helper(array('context' => 'entry_content','echo'=>false, 'custom_markup'=>$tab_atts['custom_markup']));
    
                $output .= '<section class="av_tab_section" '.$markup_tab.'>';
                $output .= '    <div data-fake-id="#'.$tab_atts['custom_id'].'" class="tab '.$titleClass.'" '.$markup_title.'>'.$myccimage.$myccicon.$tab_atts['title'].'</div>'."\n";
                $output .= '    <div id="'.$tab_atts['custom_id'].'-container" class="tab_content '.$contentClass.'">'."\n";
                $output .= '        <div class="tab_inner_content invers-color" '.$markup_text.'>'."\n";
    			$output .= ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content))."\n";
                $output .= '        </div>'."\n";
                $output .= '    </div>'."\n";
                $output .= '</section>'."\n";
    
                avia_sc_tab::$counter ++;
    
                return $output;
            }
    	}
    }
    ?>

    Then call this file in your child functions.php

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

    Any remarks or tips are welcome.
    Thanks

    #761347

    Hi,

    I have the exact same issue – using the same plugins Yoast Premium, WP-Rocket – I also use Woocommerce on a development site at present, but will need this in production soon. So, the same issues apply.

    I have contacted WP-Rocket support and they pointed out the issue is related to the Enfold theme – Here’s the post of the rocket team reporting this to the Kriesi team: https://kriesi.at/support/topic/wp-rocket-compatibility/

    In the reply it’s mentioned there’s a script which should not be in the Enfold theme – Can you tell me where to find this and I will manually remove it.
    Also if it’s fixed in the next version, when is the ETA?

    Many Thanks

    #761343

    In reply to: Gallery issue

    Hi Andy,
    thanks for your answer. Here is the problem with my gallery http://karatedo.krakow.pl/fitness/ and on the main site. Thumbnails overlapped image preview in the top left corner. The same problem is on the main site and additionally with gallery module position I think.

    Regards,
    Mariusz

    #761340

    Hi!

    What is the actual version of your iPad Mini? Please try the following css code.

    /* ipad Mini Portrait */
    @media only screen and (width:768px) and (resolution: 163dpi) {
         .responsive #top #wrap_all .process-1 .no_margin, .responsive #top #wrap_all .process-2 .no_margin {
            width: 100%;
            display: block;
            margin: 0;
            height: auto !important;
            overflow: hidden;
            padding-left: 8% !important;
            padding-right: 8% !important;
        }
    }
    
    /* ipad Mini Landscape */
    @media only screen and (width:1024px) and (resolution: 163dpi) {
        .responsive #top #wrap_all .process-1 .no_margin, .responsive #top #wrap_all .process-2 .no_margin {
           width: 100%;
           display: block;
           margin: 0;
           height: auto !important;
           overflow: hidden;
           padding-left: 8% !important;
           padding-right: 8% !important;
       }
    }

    Best regards,
    Ismael

    #761326

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    #top .avia-logo-element-container .slide-image {
        background: transparent;
    }
    

    Best regards,
    Yigit

    #761324

    Hi Wanted2b!

    Thank you for using Enfold.

    This is a related thread but the modification is for the contact form element.

    // https://kriesi.at/support/topic/google-analytics-event-tracking-2/

    For the newsletter subscription form, try to use jQuery, specifically the .attr() function.

    // https://kriesi.at/support/topic/trying-to-activate-event-tracking-on-buy-now-buttons/#post-749751

    Regards,
    Ismael

    #761319

    Hey Audica1,

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

    #top #wrap_all .av-social-link-the_knot a:before {
        height: 16px;
        position: relative;
        top: -3px;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #761316

    Hey jurgen1979,

    Yes, try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .scroll-down-link {
        background-image: url('url_here');
        background-size: 100% auto;
        height: 60px;
        width: 80px;
    }
    
    #top .scroll-down-link:before {
      display: none;
    }

    Just change the url_here with the url of the image. Hope this helps :)

    Best regards,
    Nikko

    #761315

    Hi,
    You can close the topic ;)

    regards,

    Steven

    Hey Xiluvanogcosta,

    I have added this css code in your Quick CSS located in Enfold > General Styling:

    #top .all_colors u {
        background-color: transparent !important;
    }
    
    #top.page-id-821 #hello .flex_cell u {
        color: #2d5c88;
        text-decoration: none !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    #761296

    bitte nichts mehr ändern: und folgenden code einfügen (den rest bitte löschen)

    @media only screen and (min-width: 320px) and (max-width: 990px) {
    body .column-top-margin {
        margin-top: 0;
    }
    
    div .av_one_fifth {
        margin-left: 2% !important;
        width: 44%;
      clear: none !important
    }
    
    div .av_one_fifth:nth-child(2n+1) {
        clear: both !important;
    }
    }
    • This reply was modified 8 years, 11 months ago by Guenni007.
    #761287

    immer genau lesen – ich war ja von den Einstellung individuelle höhe und kein Abstand ausgegangen – bei dir ist es jetzt:

    #top .av_one_fifth {
        width: 18%;
    }
    
    @media only screen and (min-width: 480px) and (max-width: 990px) {
    #top .av_one_fifth {
        clear: none !important;
        width: 48% !important;
    }
    #top .av_one_fifth:nth-child(2n+1) {
        clear: both !important;
    }
    }

    die no-margin anweisung ist auch dann hinfällig gewesen weil du ein top-margin definiertest.

    was ich mit Einstellungen meine: die erste 1/5 tell Spalte bestimmt das Verhalten der 4 nachfolgenden. Wenn du jetzt von einem 4 Spalter auf einen 5 Spalter wechselst, springen die 1. Elemente der folgenden Reihen als 5. Element eine Reihe höher. Und das ursprünglich 2. 1/5tel springt auf den ersten Platz. Diese Columns sind aber per default auf equal height und space eingestellt. Daher musst du beim Ändern auf 5 Spalter alle ersten Spalten die Einstellungen dort prüfen.

    #761271

    Ja es sollen aber unebdingt zwei spalten im handy hochformat sein. Hatte die Marke jetzt auch auf 320 px herabgesetzt, aber leider springt der trotzdem nicht um. (Hier der Link: http://ahlers-vogel1.x-production.com/7751-2/)

    Das Padding habe ich soweit ich weiß nur für die eigens erstellte css klasse padding auf 15% gestellt. damit die Bilder auf dem Desktop nicht so groß sind. (Die Größe der Bilder bei 5 Bildern in einer Reihe hat meinem Kunden gefallen, allerdings sind diese durch den Umstieg auf 4 in einer Reihe natürlich deutlich größer geworden. Deswegen habe ich für die 8 Seiten wo keine Sidebar vorhanden ist die Bilder in eine Farbsektion gepackt und das Padding hierfür auf 15% gestellt. (Allerdings nur bei min-width 768px)

    Das Padding hatte ich eig schon für die Mobile Ansicht verkleinert.

    Nochmals Danke

    #761259

    In reply to: Opt In Forms

    Hey!

    As I explained on the first topic, only Mailchimp support exists to the theme.
    Others have to be as a plugin

    Best regards,
    Basilis

    #761255

    Thank you for your reply but i wrote:

    Hope you can send me a template.php file like this one DOWNLOAD: http://d.pr/f/gkV7 you have provided for another user. BUT there is a hardcoded weblink in it that i dont need.

    I dont want a file with a hardcoded Link inside I like to have a really blank template which i can use in another webpage. Screenshot http://d.pr/i/9QAO The blank template that is alredy in this Dropdown produces a space at the top.
    Thank you for your help again.
    Kind regards Sascha

    Hi!

    If you follow @Arnold’s suggestion above, the page speed insight score should increase by 40 points. Most of the issues listed in page speed insight test, aside from the “eliminate-render-blocking” or “atf (above the fold)”, are not created by the theme (ex: “optimize images”). And other issues (ex: leverage caching) can be fixed by simply adding a plugin or modifying the .htaccess file.

    // https://kriesi.at/support/topic/seo-google-page-insights-blocking-rendering-ressources-above-the-fold/#post-720432

    Best regards,
    Ismael

    Hello Ismael,

    Thank you for the quick response.

    Yes, I have custom taxonomy attached and they do show up. But, to have only post of the CPT showing, I need to be able to select the CPT I created in Types, but this does not show up.

    Also I dropped a message at Toolset about this and they replied that they register the CPT according to WP guidelines. So it would be great if you could take a look t see if this can be resolved.
    Answer from toolset

    At the moment this website is only set up in local test environment (link in private area). Please let me know if you need the duplicator file of the test environment or a log in to a remote environment.

    I hope you can help me solve the issue.

    #761201

    Hey mterrian,

    Please try adding this to quick css:

    #top .active-parent-item .avia-menu-fx .avia-arrow-wrap, #top .active-parent-item .avia-menu-fx{
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    }

    Best regards,
    Jordan Shannon

    Hi @net-files,

    Thanks for the feedback, though I think the topic has been discussed in depth throughout the thread and suggestions have been given to this supposed problem.

    Best regards,
    Rikard

    #761174

    In reply to: Problem with a plugin

    Hey Europroject,

    Try to checkout this post: https://kriesi.at/support/topic/google-maps-api-multiple-times-on-the-page/#post-251997

    Best regards,
    Nikko

    #761171

    In reply to: CORS policy fonts

    Thanks for your answer.
    That didn’t work, now I downloaded the chrome extension: Allow-Control-Allow-Origin: *
    And it works fine… I have the latest chrome and Windows 7, same on my laptop, same problem.
    If I use other browser all works just fine.
    A friend of mine has this problem also., so it’s not my computer only.

    #761165

    Hi Steven,

    Ok, thanks for the feedback. I’m guessing you were getting cached results then. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #761156
    muskowl16
    Participant

    Here is the my website link – http://pu.muskowl.com
    I am using Enfold default theme , in which i used MegaMenu for Primary Menu . it working fine in desktop but in mobile menu there is a problem of color of font .

    i want to do 1 thing in mobile menu whenever user open website in mobile the feature of MegaMenu will be disabled or Menu become simple menu as wordpress provides it.

    #761154

    you guys were right, looks like its related to the modification you guys gave me in order to show private post in the mansory, starting in the new version this doesnt work, can you advise how i should modify the code?

    this thread shows the changes we’ve made to show private post in the masory https://kriesi.at/support/topic/show-private-post-on-mansory/

Viewing 30 results - 82,831 through 82,860 (of 142,737 total)