Forum Replies Created

Viewing 30 posts - 66,421 through 66,450 (of 67,030 total)
  • Author
    Posts
  • in reply to: Woocommerce product pages not showing up properly #121758

    Hi,

    Single product pages don’t usually have a sidebar.

    It will require a bit of modification because of the single product page’s layout, please hide it. Use this on your custom.css

    .single-product .sidebar {
    display: none !important;
    }

    Regards,

    Ismael

    in reply to: How to remove featured image inside single post? #117991

    Hi,

    Can you give us a link to your website?

    Please check functions.php. Do you have this line of code? 281-321

    if(!function_exists('avia_post_nav'))
    {
    function avia_post_nav($same_category = false)
    {
    if(!is_singular() || is_post_type_hierarchical(get_post_type())) return;
    //if(get_post_type() === 'portfolio') return;

    global $avia_config;

    $same_category = apply_filters('avia_post_nav_categories', $same_category);
    $entries['prev'] = get_previous_post($same_category);
    $entries['next'] = get_next_post($same_category);
    $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'>".$avia_config['font_icons'][$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;

    //add this line for fake. never gets executed but makes the theme pass Theme check
    if(1==2){paginate_links(); posts_nav_link(); next_posts_link(); previous_posts_link();}
    }
    }

    Regards,

    Ismael

    Hi,

    I can’t see the flickering when I re-size the browser. What browser are you using?

    Let me tag the rest of the support team to check.

    Regards,

    Ismael

    in reply to: Enfold – Footer Title FONT CHANGE #120311

    Hey,

    Glad it worked.

    Regards,

    Ismael

    in reply to: Hyperlink rollover not working #121553

    Hi,

    How did you add the images without rollover effect?

    If you want the rollover effect, you need something like this

    <a href="http://www.klimhal-events.nl" class="avia_image  avia-builder-el-3  avia-builder-el-no-sibling avia-align-center ">
    <img class="avia_image avia_animated_image avia_animate_when_almost_visible top-to-bottom avia_start_animation" src="http://lavitasana.oscar.nl/wp-content/uploads/2013/05/landing-LVS-021-300x240.png" alt="">
    <span class="image-overlay overlay-type-extern" style="opacity: 0.7; left: 0px; top: 0px; display: block; height: 240px; width: 300px;"><span class="image-overlay-inside"></span></span></a>

    This line of code is the rollover effect

    <span class="image-overlay overlay-type-extern" style="opacity: 0.7; left: 0px; top: 0px; display: block; height: 240px; width: 300px;"><span class="image-overlay-inside"></span></span>

    They need to be included.

    Regards,

    Ismael

    in reply to: Using an image and slider in footer column #121483

    Hello,

    You can use the text widget to insert tag on the footer. You need to use Media Queries to make it responsive.

    Regards,

    Ismael

    in reply to: Issues – Simple Icons in the footer #121471

    Hi,

    You can play around with the column width and the margin. Use this

    #footer .flex_column.av_one_third {
    width: 25%;
    margin-left: 8%;
    }

    Regards,

    Ismael

    in reply to: Left Sidebar Menu & Footer #120855

    Hey,

    It is possible. Edit sidebar.php then find this code

    $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'  => 'menu_order, post_title');
    $children = wp_list_pages($args);

    Change it to this

    $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'  => 'menu_order', 'sort_order' => 'ASC');
    $children = wp_list_pages($args);

    You can refer to this link for more sorting options.

    http://codex.wordpress.org/Function_Reference/wp_list_pages

    Regards,

    Ismael

    in reply to: Header Border (bottom) #121310

    Hi,

    Please add this on your custom.css

    #header_main {
    border-bottom: none;
    }

    .stretch_full.container_wrap.alternate_color.light_bg_color.title_container {
    border-top: none;
    }

    #header_main .container {
    border-bottom: 1px solid #E1E1E1;
    }

    Regards,

    Ismael

    in reply to: font color sidebars and widgets #121108

    Hey!

    Sure :))

    Best regards,

    Ismael

    Hey,

    Sorry for the delay. You can move the menu via CSS. Just add this on your custom.css or Quick CSS

    #menu-top-menu {
    margin-top: 30px;
    margin-left: -180px;
    }

    Adjust the values.

    Regards,

    Ismael

    in reply to: how to create a banner at the top #121571

    Hi,

    I think that is the logo. Just insert your logo on Enfold > Logo.

    Regards,

    Ismael

    Hello,

    Please don’t use the LayerSlider shortcode because it is not working. Go to Advance Layout Editor, under Media Elements, insert the LayerSlider.

    Regards,

    Ismael

    in reply to: Facebook Like button #117640

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: Facebook Like button #117639

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: padding for advanced layer slider #121426

    Hi,

    You can insert the Horizontal Ruler element, select Whitespace. You can even indicate the height.

    Regards,

    Ismael

    in reply to: how to clone an existing page within the Enfold theme #121413

    Hi,

    @formateins: Thanks for the tip.

    Or you can add this on your functions.php

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

    Cheers,

    Ismael

    in reply to: Unable to Install the Theme #120814

    Hey,

    Glad you fixed it.

    Cheers,

    Ismael

    Hi,

    Refresh your page a few times.

    These are the steps you can do

    – Deactivate all plugins then reactivate them to check which plugin is interfering with the Screen Options.

    – Switch back to TwentyTwelve theme, see if the button works.

    – Re-uploading the wp-admin and wp-includes folders from a fresh download of WordPress?

    – Increase the memory available on your PHP.

    1. If you have access to your PHP.ini file, change the line in PHP.ini

    If your line shows 32M try 64M. If your line shows 64M try 128M

    memory_limit = 64M ; Maximum amount of memory a script may consume (32MB)

    2. If you don’t have access to PHP.ini try adding this to an .htaccess file:

    php_value memory_limit 64M

    3. Try adding this line to your wp-config.php file:

    Increasing memory allocated to PHP

    define(‘WP_MEMORY_LIMIT’, ’64M’);

    4. Talk to your host.

    Regards,

    Ismael

    in reply to: Grid blog post excerpt length #121045

    Hi,

    Let me tag Kriesi.

    Regards,

    Ismael

    in reply to: Calling post_type=page i receive a blank page #120252

    Hi,

    I think user.ini is almost the same as .htaccess. Please contact your host to make the certain changes for you.

    Regards,

    Ismael

    in reply to: Slider for pages #121233

    Hi,

    You kinda lost me there. Are you talking about the navigation?

    Let me tag the rest of the support team.

    Regards,

    Ismael

    Hi,

    Please try to add this css code

    .grid-content {
    padding: 16px !important;
    position: relative;
    }

    Regards,

    Ismael

    in reply to: Logo – banner hyperlink #120041

    Hey,

    Sure. Glad we could help. :)

    Regards,

    Ismael

    in reply to: Get rid of that section ? #121518

    Hi,

    That is the title container. Are you sure you want to hide it? You can add this on your custom.css to remove the area.

    .title_container {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Can't Add Text To Template Builder sections #121503

    Hi,

    It is weird. Please download the latest version, Enfold 1.5. It might fix the issue.

    Or

    You can change the memory limit within the wp-config.php file or in the htaccess file:

    define('WP_MEMORY_LIMIT', '128M');

    If you have access on the .htaccess file, add this code

    php_value memory_limit 128M

    Regards,

    Ismael

    in reply to: image overlay icon color #121502

    Hi,

    You can change the background using this

    .main_color .image-overlay .image-overlay-inside::before {
    background-color: red !important;
    }

    Open css > base.css, find this code

    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}

    You can replace the icon used, refer to this link http://www.entypo.com/characters/. Lets try the phone icon (U+1F4DE). You can do something like this

    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"1F4DE";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"1F4DE";}

    Remove browser cache then hard refresh the page.

    Cheers,

    Ismael

    in reply to: Fullwidth swf on portfolio page with center alignment #121498

    Hi,

    You move it using this on your custom.css or Quick CSS

    .flex_column.av_one_full.first.avia-builder-el-0.avia-builder-el-first .avia_textblock > div > object {
    margin-left: -600px;
    }

    Adjust the left margin.

    Regards,

    Ismael

    Hi,

    You can probably achieve this using Contact Form 7. Then edit the styling via CSS.

    Regards,

    Ismael

    Hi,

    I tested the Contact page on my end and it is working fine. Please watch this video to understand how to work with the contact page https://vimeo.com/channels/aviathemes/64978019. Maybe it has something to do with the language.

    Regards,

    Ismael

Viewing 30 posts - 66,421 through 66,450 (of 67,030 total)