Viewing 30 results - 225,181 through 225,210 (of 243,412 total)
  • Author
    Search Results
  • #238246

    Topic: Admin Menu Broken

    in forum Enfold
    wmsgeorge
    Participant

    Hi,

    I am referring to Appearance > Menus page, i see it broken whenever I go to it now.

    Here is a screenshot – http://www.frontlineseo.com/admin-menu.jpg

    The website is frontlineseo.com, using most recent version of wordpress and latest update of enfold. Please advise.

    #238241

    Hey keithcrest!

    Thank you for using the theme. I hope you’re doing great.

    Remove all css modifications that you added for the header. Remove the header.php on the child theme then replace it with the new header.php from the parent theme folder. You can see the header code on includes > helper-main-menu.php. Please reconfigure the header settings again because Kriesi changed the header panel. You’ll see that there a lot of added options like header height, logo and menu position, extra element, phone etc.

    Best regards,
    Ismael

    #238239

    Hi chiummog!

    1.) You can apply the anchor menus. Please refer to this link: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/

    2.) You can do the same as step 1.

    3.) Raleway is already included for the heading font on Enfold > Styling. Add this on functions.php if you want to use it for the body font:

    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Raleway'] = 'Raleway';
    return $fonts;
    }

    Regards,
    Ismael

    #238222

    Hi Nenad!

    On what browser and OS are you testing this with? Let me ask Kriesi about this. I think I saw a few inquiries about the header_resize function not working on Chrome Windows 8.

    Cheers!
    Ismael

    Hi Labhanshi!

    1.) The layer slider logo is working properly when I tested it on my end. There is actually no recommended logo size. You can experiment with it, see what works best.

    2.) Please try to resave the settings. The demo works fine after the latest update of Enfold. Edit the slide then go to Slide Settings > Slideshow > Slideshow behavior, enable the “Start slideshow” setting.

    Please give us a link to the website.

    Best regards,
    Ismael

    Hi!

    You can add this on your custom.css or Quick CSS to create a right margin:

    #footer #text-8 .av_font_icon {
    margin-right: 20px;
    }

    Best regards,
    Ismael

    Hey fefrancesco!

    1.) There is a database error connection. Please contact your host.

    2.) The demo uses images with 1500px in width. 1024px is fine but if you want a sharper image you should use larger source image.

    3.) Please fix the database error issue. Assuming you’re using a layer slider, please go to the slide’s Slide Settings > Navigation Area > Show navigation buttons. Disable all options.

    4.) Go to Enfold > Footer. On the Copyright field add the [nolink] tag.

    Cheers!
    Ismael

    #238191

    Hi Ismael, thanks for your reply. Can you tell me who is the plugin author? (I got the plugin with Enfold, I didn’t purchase it separately.)
    Thanks in advance for pointing me in the right direction!

    #238189

    Hey!

    I don’t see any layer slider on the website. Can you please post the link to the actual page with the layer slider? Like what Yigit said, create a layer then add the contact form code HTML/Video/Audio panel. You can even use the contact form shortcode.

    Regards,
    Ismael

    #238187

    Hey!

    Create a slide then insert 4 layers, on the last layer insert the video. Edit the first layer then add an image, go to Transition panel. On transition in option, set the Delay to 0. Do the same with the second layer but give it a Delay of 2000 for example. For the third layer give it 4000 for the delay. You can increase the delay if you want the background images to stay longer. Make sure that the last layer with the video has a 0 delay so that it will show up first when the slide loads.

    Best regards,
    Ismael

    #238181

    In reply to: Theme will not install

    Hi Gary!

    Sounds like the server is either timing out because of a size limit or just a time limit. You can upload the theme easily over FTP which will also give you more control on setting up a child theme as well. See: http://kriesi.at/documentation/enfold/install-enfold-over-ftp/

    Cheers!
    Devin

    #238180

    Hey sgulick!

    There is only ever one version of the theme download from your account on ThemeForest which is the most recent version. It won’t show as any specific number but right now it is the newest 2.6 version.

    Best regards,
    Devin

    #238179

    In reply to: Header in Mobile

    Hi!

    I’m sorry but all three sites are not loading on my end. I’m not sure why this is happening on my end but have you tried to reconfigure the header settings? Saving the settings on Enfold > Header might fix the issue. Kriesi created a new platform with a lot of options to modify the header.

    Best regards,
    Ismael

    Hey!

    You can find the avia post navigation functions on functions-enfold.php:

    if(!function_exists('avia_post_nav'))
    {
    	function avia_post_nav($same_category = false, $taxonomy = 'category')
    	{
    		global $wp_version;
    	        $settings = array();
    	        $settings['same_category'] = $same_category;
    	        $settings['excluded_terms'] = '';
    		$settings['wpversion'] = $wp_version;
            
    		//dont display if a fullscreen slider is available since they overlap 
    		if((class_exists('avia_sc_layerslider') && !empty(avia_sc_layerslider::$slide_count)) || 
    			class_exists('avia_sc_slider_full') && !empty(avia_sc_slider_full::$slide_count) ) $settings['is_fullwidth'] = true;
    
    		$settings['type'] = get_post_type();
    		$settings['taxonomy'] = ($settings['type'] == 'portfolio') ? 'portfolio_entries' : $taxonomy;
    
    		if(!is_singular() || is_post_type_hierarchical($settings['type'])) $settings['is_hierarchical'] = true;
    		if($settings['type'] === 'topic' || $settings['type'] === 'reply') $settings['is_bbpress'] = true;
    
    	        $settings = apply_filters('avia_post_nav_settings', $settings);
    	        if(!empty($settings['is_bbpress']) || !empty($settings['is_hierarchical']) || !empty($settings['is_fullwidth'])) return;
    	
    	        if(version_compare($settings['wpversion'], '3.8', '>=' ))
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	            $entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	        }
    	        else
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category']);
    	            $entries['next'] = get_next_post($settings['same_category']);
    	        }
    	        
    		$entries = apply_filters('avia_post_nav_entries', $entries, $settings);
            	$output = "";
    
    		foreach ($entries as $key => $entry)
    		{
                if(empty($entry)) continue;
    
                $tc1   = $tc2 = "";
                $link  = get_permalink($entry->ID);
                $image = get_the_post_thumbnail($entry->ID, 'thumbnail');
                $class = $image ? "with-image" : "without-image";
    
                $output .= "<a class='avia-post-nav avia-post-{$key} {$class}' href='{$link}' >";
    		    $output .= "    <span class='label iconfont' ".av_icon_string($key)."></span>";
    		    $output .= "    <span class='entry-info-wrap'>";
    		    $output .= "        <span class='entry-info'>";
    		    $tc1     = "            <span class='entry-title'>".avia_backend_truncate(get_the_title($entry->ID),75," ")."</span>";
    if($image)  $tc2     = "            <span class='entry-image'>{$image}</span>";
                $output .= $key == 'prev' ?  $tc1.$tc2 : $tc2.$tc1;
                $output .= "        </span>";
                $output .= "    </span>";
    		    $output .= "</a>";
    		}
    		return $output;
    	}
    }
    

    Best regards,
    Ismael

    #238158
    addwebtoday
    Participant

    Hi we first tried doing an animated slider in the build in Layerslider WP in the enfold theme and while it looks great on desktop, we’re having trouble on mobile. The text shrinks down, but overlaps each other and the image and icon shortcode we put in doesn’t scale down.

    So next we tried revolution slider, and had problems getting it to even be full screen. We saw someone with a similar problem in the forum and saw a response with putting it in a color section and putting in some CSS into the quick css and then it still didn’t work without a lot of tweaking. We were eventually able to get it to work using a custom layout and manually entering in the widths to scale down to. It seemed to work on android, but on iOS when you tilt the phone to landscape mode it crashes multiple browsers.

    The more basic sliders built into the theme seem to work perfectly, but they lack the functionality we need for animation.

    Any thoughts?

    #238157
    ChecMark
    Participant

    Just purchased Enfold and tried to add to my site using the “new” and selecting the WordPress zip file. It shows “uploading” forever and then errors out showing “Are you sure you want to do this?”. I’ve tried three times now with same result. Not a good start.

    #238154
    sgulick
    Participant

    Hello,

    I currently have enfold 1.8.1 and am trying to update to v2.6.1 to fix some bugs. I logged into my Themeforest account and the on;y available file in my download area is v 1.8.1.

    Could someone please tell me what I’m missing or where to find the update?

    Thanks,
    Steve

    #238152
    Shabnam83
    Participant

    Hi,
    I would like to track the form that I have on my page with a Google Adwords tracking code.
    I was looking in the forum and I saw that different people had the same problem.
    I don’t want to use contact form 7 because it think that the form that I have for Enfold theme fits better the overall design.
    What’s the best way to do it?

    Here’s the code:
    <!– Google Code for Kontakt Conversion Page –>
    <script type=”text/javascript”>
    /* <![CDATA[ */
    var google_conversion_id = 968685552;
    var google_conversion_language = “en”;
    var google_conversion_format = “3”;
    var google_conversion_color = “ffffff”;
    var google_conversion_label = “NVQVCLCikBEQ8O_zzQM”;
    var google_remarketing_only = false;
    /* ]]> */
    </script>
    <script type=”text/javascript” src=”//www.googleadservices.com/pagead/conversion.js”>
    </script>
    <noscript>
    <div style=”display:inline;”>

    </div>
    </noscript>

    Thnx for the help

    #238150

    Hi Josue,

    thanks, but it does not working well on a small screen.
    I solved this issue by modifying my blog logo (now it includes the tagline).
    Ticket can be closed.

    Cheers,
    Gee Are

    #238148

    Peter:

    Thank you very much for your expertise. Most of the issues I have figured out and it looks like the theme will work for me. The few things I want to have control over such as fade speed and the Pretty Photo settings I can go into the Enfold JS files and edit the settings then it reflects in the child. For me it’s easier to do it that way than to create new JS directories within the Child hierarchy because I can take advantage of Enfold updates and just make a couple edits each time as it doesn’t happen that often.

    It would be great if you could add a “slideshow transition speed” control function beneath “slideshow transition” drop-down. And also great if you could control the Pretty Photo functions from within WP, but that’s not as important.

    However, I do have a couple basic questions that I must resolve before I can continue–The site in progress: http://blaircomm.us/blaircomm14/:

    1. How do you set an existing page as the”home page”in Enfold? I have all WP settings to the latest post and have set the page in the Enfold Child settings–however nothing happens. Do I just rearrange the menus or what? I know it’s a stupid question, but I can’t find the answer anywhere. (I also have trouble with server latency from Network Solutions, so certain updates sometimes take up to 1/2 hour to show and it may be the reason.)

    2. How do I create a new “home” page in Enfold? When I try, even though it is from a template of one of Enfold’s pre-configured home pages, it shows up as a “page” with the “you are here…” menu at the top. How can I create a “home” page from scratch and have it at the top of the hierarchy with no “you are here…” menu?

    3. How can I insert a “layer slider” that is a full page like the “one-page portfolio” sample page you have that uses a”full screen slider?” Do I need to make a “full screen layer slider” and how can I get it to function as a full-page just like the”full-screen slider?” Or, can I insert a “layer-slider” into the “full-screen slider” as a media element of like an image? Point me in the right direction as I want to have four or five rotating slides for the one-page portfolio type home page that are “layer sliders.”

    4. Last question: How can I adjust the column width in the “mega-menu?” They are much too wide for the menu listings and I need to be able to configure them to work according to the content.

    Thank you very much.

    – Michael

    #238145

    I don’t have that option in the “Enfold Child Google Maps Widget”

    …it’s labled: “Info Bubble Content:” :/

    Thanks for the help!

    Wanderlustme
    Participant

    Hey,

    Finally I’m able to download the theme. But I dont seem to be able to make any changes.
    I have already download images for slide (By editing the original homepage in pages session).

    The slide is still not working. I have already deleted other sample slide and once I have saved the new slide. I tick on the box then click “apply”. Once the website refresh the page. The tick is gone and I saw the auto message that you’ve received LayerSlider with your current theme. Our auto-update mechanism only works with a direct purchase of the plugin’.

    The editing page and preview are different. The Enfold original slideshow always pop-up and I already deleted all of it! In the editing page my pictures and slide are there. But on the preview, the Enfold slide is being used. I have watched demo via VEMO but I saw that the instrustor has the button on top (edit frontpage) when I dont have one, I have to click pages > all pages > select “Home page” > then click “Edit”

    Despite so many attempt it’s always the same. Is there any instruction that I can read all for the setting (especially slide show? )Can you look at the website and fix it? or check what seems to be the problem. I just downloaded the theme yesterday from themeforest. (Is it the new update? )my slide show version is 2.6.1

    I would like to fix the slide problem within today please answer as soon as possible.

    Second question, Can I set a default page that always link with category like travel on the home page so I dont have to edit every time I update new posts. So the reader can always see the lastest post on the home page?
    And I have not downloaded BB forum and how can I download BB Forum as I clicked dismiss. (The Vemo video suggested to click dismiss)

    Do I also need to change “Allow LayerSlider access to users with … ” to other than Admin eg. Author, admin, etc?
    and I have already clicked update the slide on the right hand side too.

    Please tell me in details how can I adjust to use my own slide show. (By uploading photos not by posting URL photos)

    • This topic was modified 11 years, 7 months ago by Wanderlustme.
    #238120

    There is a possibility that integration with the plugin userpro

    Hello,

    I have read this post with interest.

    Anyway, how could such structure be completely removed, so that the code is lighter?

    Could you please indicate which files are to be edited?

    Thank you.

    #238117

    No, that isn’t possible to swap an entire element out with another on mobile only.

    #238116

    In reply to: URGENT HELP!!!

    Is the logo fixed from this topic: https://kriesi.at/support/topic/enfold-update-errors-help/

    Please do not start similar topics with overlapping questions. It makes it much harder for us to answer effectively and for others to search+find answers.

    #238115

    In reply to: Mobile Menu options

    Devin,

    It seems that due to this the menu does not show in new languages when using WPML; the original language shows the mobile menu button ; but when switching to another language the the menu option disappears.

    As the following option did disappear ( Enfold theme options > Header and choose to display “Display as Slide Out Menu” in Responsive Header Main Menu http://i.imgur.com/4LWiIMn.jpg ) it now seems we are stuck with other languages without any menu.

    #238114

    Hey David!

    I’ve checked both of the urls, one it’s giving me a 404 error, meaning page does not exist, about the sidebars not being display, I’m assuming you are using a custom sidebar, if that is the case have you checked if the widget has been drag-drop into the specific sidebar ?, also make sure you are referencing the same sidebar inside of the page you are creating.

    Best regards,
    David

    #238107

    +1 on the option to randomise slide order, or at least to start on a random slide.

    #238105
    keithcrest
    Participant

    Hi,

    I’m hoping you can help me with a few things, I upgraded from 2.4.5 to 2.6.1…and it blew up some things…and my head hurts from trying to fix them!

    This is in regards to the following work site: http://pgutters.jonevan.com/

    1) I lost some “call this number” stuff that I had inserted in a child header.php file, but the new core theme header.php is so different, I can’t figure out where to insert it (still which you would give a straightforward left/right content area option when you place the menu below the logo :-). Here is the code:
    echo “<div class=’topText’>For Gutter Cleaning, Repair, or Installation:</div><div class=’bottomText’>Call (609) 356-0288</div>”;

    Here is an image of how my header area looked before the theme upgrade:
    http://i62.tinypic.com/35hl3bs.jpg

    I removed my child header, so it would add to any confusion and it was messed up now anyway.

    2) The menu text was/is supposed to be white (I can’t believe I can’t figure out the target for that, so please excused my stupidity).

    3) In the drop downs, the highlight background color was/ is supposed to be #f5f5f5, but something is forcing it to the main menu background color and I can’t figure out what’s going on there, either.

    4) Last, I can’t seem to get the custom.css to work at all, targeting smartphones. I have put the file in a “css” folder in my child theme…I have left it on the top level of my child theme (in no folder, like the styles.css)…and neither way works. But when I just write an “h1: display none” in the core theme’s custom.css, the h1s disappear just fine. So what gives? Why can’t I get custom.css to work in my child theme folder?

    I appreciate your taking the time to help me with these items. As I said, I have spent a couple of hours (unbelievably) on these things since upgrading to the latest core theme (the custom.css is why I upgraded, to see whether that helped), and I can no longer see straight!

    Keith

    • This topic was modified 11 years, 7 months ago by keithcrest.
Viewing 30 results - 225,181 through 225,210 (of 243,412 total)