Viewing 30 results - 237,601 through 237,630 (of 244,161 total)
  • Author
    Search Results
  • #169803
    dmaca
    Participant

    Hello guys!

    Is it possible to have that marvelous (header) ajax search as widget in order to use it on shop pages?

    Kind Regards,
    Denis

    #169801

    Thanks a lot, Josue!

    It worked almost fine!!!

    Do you know if it is possible to decrease that spacing?

    http://tinypic.com/r/2zfmwl4/5

    Kind Regards,
    Denis

    #169799
    dswreclame
    Participant

    Hi there,

    I’m using your great Enfold theme for my website. The site works fine when viewing on Desktop and tablet, but I encountered a problem when viewing on mobile phone. There are big spaces between te logo, menu button and the header as you can see instantly when visiting the site. I don’t know when this problem occured, but do I know it worked fine when I started building the site. Do you have any idea how to fix this?

    Thank you in advance,

    Matthijs

    #169798
    dswreclame
    Participant

    Hi there,

    I’m using your great Enfold theme for my website. The site works fine when viewing on Desktop and tablet, but I encountered a problem when viewing on mobile phone. There are big spaces between te logo, menu button and the content as you can see instantly when visiting the site. I don’t know when this problem occured, but I know it worked fine when I started building the site. Do you have any idea how to fix this?

    Thank you in advance,

    Matthijs

    Hi Josue,

    thanks for the quick response. If I upgrade, will my settings for Enfold get preserved ? (fonts, logo, color scheme, etc.)

    thanks
    jeffrey

    Thanks – worked like a charm

    #169776

    Hey dmaca!

    No, tbh I’m not sure why it doesn’t work. You can try to add a print_r() function to enfold/woocommerce-config/config.php to output the content of the get_post_meta query. Search for

    
    $active_hover = get_post_meta( $id, '_product_hover', true );
    

    and replace it with

    
    $active_hover = get_post_meta( $id, '_product_hover', true );
    print_r($active_hover);
    

    to check the return value. If you want to activate it for all products replace

    
    $active_hover = get_post_meta( $id, '_product_hover', true );
    

    with

    
    $active_hover = true;
    

    and it should work even if the post meta value is not set.

    Cheers!
    Peter

    #169759
    rwwood
    Participant

    I just installed Enfold, and now the products that were set up under Propulsion are not showing up. They are in the backend WooCommerce product list, but don’t show on the shop page or by clicking “view product” on the product edit screen. I tried creating a new product, but that didin’t show up either. None of the information or images shows for any of the products.

    I found the following error in the php error log repeated for every page load of the shop page:
    [03-Oct-2013 05:48:07] PHP Fatal error: Cannot use string offset as an array in /home3/fivzerh7/public_html/wp-content/themes/enfold/includes/helper-template-logic.php on line 250

    • This topic was modified 12 years, 4 months ago by rwwood.
    #169734

    In reply to: new social icons

    Hello!


    @Michae1
    : Enfold 2.3 has the ability to upload new icon fonts. Go to Enfold > General Settings > Iconfont Manager.

    Cheers!
    Ismael

    mhiller
    Participant

    I love how Enfold integrates with the bbPress Plugin, but is there a way to remove the Enfold Header with Page Title and Breadcrumb Navigation from the Forum pages? Thanks, Mike

    #169727

    Hi Sowmedia!

    If I’m not mistaken, Kriesi mentioned including the tags and category on the next update. Please download Enfold 2.3.

    Regards,
    Ismael

    #169720

    Hi Mike!

    I didn’t note you are using a Child theme, yes, you could add it here http://acmecontentlab.com/wp-content/themes/enfold-child/style.css

    Cheers!
    Josue

    #169713

    Thanks Josue! I am assuming I can put the code in the Enfold Child theme CSS or does it have to go in the Enfold parent CSS file? Mike.

    Hi Jeffrey!

    Please update Enfold, you have version 1.1, last version is 2.3, that will probably fix your issue.

    Regards,
    Josue

    #169700

    Hi mhiller!

    Try putting that CSS in this file, there you can set different rules for mobile and desktop, the final code would look like this:

    @media only screen and (min-width: 768px) {
      /* Add your Desktop Styles here */
    	.avia-fullscreen-slider .avia-slideshow {
    	height: 100px !important;}
    }
    
    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
    
    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .avia-fullscreen-slider .avia-slideshow {
      height: 50px !important;}
    
    }

    Cheers!
    Josue

    #169687

    Hi!

    First, create a backup of your files and database before doing the following. The automatic theme update should not overwrite any theme child settings but I saw a post earlier where he lost the settings on update. I’m not sure if it is the theme’s fault or he might have done something wrong. Go to Enfold > Theme Update > Enter your username and API Key. It will check for update every 12 hours and notify you. You can then manually click update if one is available.

    Regards,
    Ismael

    #169683

    Hey abortolotti!

    How did you add the video? You can add a link to the vimeo video, it will open in a lightbox when clicked. Create a new layer then switch to Div / Video. Add something like this:

    <a href="http://vimeo.com/64927358"><img src="IMAGE URL HERE"></a>

    Or you can add the iframe code.

    <iframe src="//player.vimeo.com/video/64927358" width="500" height="281" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="http://vimeo.com/64927358">Enfold - Advanced Layout Editor (short)</a> from <a href="http://vimeo.com/devinvinson">Devin Vinson</a> on <a href="https://vimeo.com">Vimeo</a>.</p>

    Regards,
    Ismael

    #169681

    Hi!

    Please add following code to Quick CSS in Enfold theme options

    .responsive .mobile_menu_tablet .main_menu { display: block; }

    It is set to display: none currently

    Best regards,
    Yigit

    #169679
    mhiller
    Participant

    I wanted to reduce the height of the Enfold Fullscreen image slider, so with the quick CSS I inserted this:

    .avia-fullscreen-slider .avia-slideshow {
    height: 100px !important;}

    It reduced the size of the slider when viewed on a full-size screen, but in responsive mode (iphone), the slider was reduced so small that the text title could not be seen well (see here: http://acmecontentlab.com/home-4/ ). Is there a way to reduce the slider height so that it keeps the same proportions in responsive mode? Thanks, Mike.

    #169646

    Hello krshoffner!

    Here, /enfold/framework/php/function-set-avia-frontend.php:

    Replace the line 441:
    $logo = "<$headline_type class='logo bg-logo'><a href='".home_url('/')."'>".$logo."$sub</a></$headline_type>";

    With:
    $logo = "<$headline_type class='logo bg-logo'><a href='http://google.com'>".$logo."$sub</a></$headline_type>";

    Regards,
    Josue

    #169638

    In reply to: logo vertical align

    Hi connotion!

    Sorry it is not very clear to me. Would you like to move logo higher? If so, please add following code to Quick CSS in Enfold theme options

    .logo { top: 14px; }

    If not, please post a screenshot and show. You can upload screenshots here http://imgur.com/ and post links here

    Regards,
    Yigit

    #169627

    Hi AndrewDelaware!

    Please add following code to Quick CSS in Enfold theme options

    .avia_message_box_content { text-transform: capitalize; }

    Regards,
    Yigit

    #169626
    thewrath1
    Participant

    I can’t find why, but the second menu drop down is transparent, and doesn’t have a white background like the demo;

    http://kriesi.at/themes/enfold/homepage/home-v3-3-column-with-blog/?skin=Cyan?skin=Cyan

    #169622

    Hi Marcel!

    Can you post the link to your website? And version 2.3.1 is available to download on ThemeForest. You can try to update in the meantime to see if it will help
    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Regards,
    Yigit

    Hey McGawain!

    Please add following code to Quick CSS in Enfold theme options

    .widget_nav_menu ul:first-child>.current-menu-item, .widget_nav_menu ul:first-child>.current_page_item { padding-left: 0; }

    Regards,
    Yigit

    #169604

    Hi!

    You can add it to the css/custom.css file or in the Quick CSS textarea ( Enfold > Styling ),

    Cheers!
    Josue

    #169595

    Hello ceosixx!

    You’ll need to update your theme to the most recent version available from your downloads on Themeforest to bring it up to compatibility to WordPress 3.6.

    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Devin

    Hello!

    You can request features here https://kriesi.at/support/topic/enfold-feature-requests/

    In your WordPress theme directory please go to Enfold folder and open Functions-enfold.php file and find following code in line 302

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));

    and change it to

    if($breadcrumb) $additions .= "<span class='breadcrumb-title'>Tel:2312312312</span>";

    Cheers!
    Yigit

    • This reply was modified 12 years, 4 months ago by Yigit.
    #169585
    allegrabillings
    Participant

    Hey guys, I know you are bombarded with this but after the 2.3.1 enfold update I am having a problem with my icons in the child theme.
    I have emptied cash fully, and my site is http://jackandaddi.com/ for reference to view issue.

    Ok so were the problem is for me, as I gather is in the iconbox.php file. I like many others like the icon itself to be a link vs just the h3 tag in icon boxes. to change this in my child theme, through your help we have done the following.

    added this to my child functions.php file so we can edit the shortcode php files.

    /* makes it so i can copy and modify parent shortcode files into the shortcodes directory in my child theme*/
    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 child directory added shortcodes folder and placed the iconbox.php file in there. The change made that worked BEFORE the 2.3.1 update was to delete code:

    $output .= ' <div class="iconbox_icon heading-color" '.$display_char.'></div>';

    and replace with following code:

    if(!empty($link))
    				{
    					$output .= "<a href='$link' title='".esc_attr($title)."' $linktarget>";
    					$output .= '<div class="iconbox_icon heading-color avia-font-'.$font.'">'.$display_char.'</div>';
    					$output .= '</a>';
    				}
    				else
    				{
    					$output .= '<div class="iconbox_icon heading-color avia-font-'.$font.'">'.$display_char.'</div>';
    				}
    

    This worked beautifully then, but I see that the iconbox.php file has been altered heavily and If I replace the old iconbox file with the new one and append that same line of code then all the icons on the site disapear and show code text in its place.

    Please advise how to IN THE NEW iconbox.php file make the icons themselves serve as a clickable link instead of only the default h3

    thanks

    #169575

    Hi!

    I’m not seeing any errors that would explain it not working but if you can first try deactivating all currently active plugins and see if that helps. While deactivated, go ahead and update the theme by either using the built in theme updater in the theme options or via FTP.

    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Devin

Viewing 30 results - 237,601 through 237,630 (of 244,161 total)