Forum Replies Created

Viewing 30 posts - 61,891 through 61,920 (of 64,054 total)
  • Author
    Posts
  • in reply to: links disappear in enfold #135490

    Hi,

    How do you add the link? It shouldn’t work that way. Please download the latest version of Enfold which is 1.9.1.

    Regards,

    Ismael

    in reply to: Custom menu widget #134991

    Hi,

    Can you give us a link to your website?

    Regards,

    Ismael

    in reply to: 403 forbidden message at top of page #135430

    Hi,

    I’m not sure what is causing the error. You can add this on your custom.css or Quick CSS to hide it:

    body > center {
    display: none;
    }

    You’re using an old version of the theme. Please download version 1.9.1 on your themeforest account. Override the theme files via FTP, watch this video: https://vimeo.com/channels/aviathemes/64927356

    Regards,

    Ismael

    Hi,

    Under Attachment details when selecting an image on the Media Library, you can click “Edit Image”.

    Regards,

    Ismael

    in reply to: Issue with Layer Slider Images #134424

    Hi,

    For example, you added an ID on the attributes panel, something like “awesome”. You can use it like this on your custom.css or Quick CSS

    #awesome {
    background: black;
    }

    Regards,

    Ismael

    in reply to: header and top color inividual page #134087

    Hey,

    Glad you figured it out.

    Cheers,

    Ismael

    in reply to: Import Dummy Data – NOT WORKING!!! #131488

    Hi,

    Sorry for the inconvenience. It is only difficult on your end, maybe because of a unique factor on your hosting environment. Thousands of user are not having any trouble importing the dummy data.

    Did you increase the php memory limit? Add this on your wp-config.php:

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

    Again, we are very sorry that you are experiencing this issue. :(

    Regards,

    Ismael

    in reply to: Broken icon images when using a subdomain – Enfold #135397

    Hi,

    I don’t see the difference between the two links. Icons are showing fine.

    Regards,

    Ismael

    in reply to: W3 Total Cache breaks Lightbox #134747

    Hey,

    @mirzepapa: Thanks for this. Really helpful.

    Regards,

    Ismael

    in reply to: WordPress Toolbar Not Showing #133793

    Hey,

    Glad you figured it out.

    Cheers,

    Ismael

    in reply to: Testimonial Images and IE8 #135203

    Hi,

    Unfortunately, border-radius property is not supported on IE8. Please add this on your custom.css to fix the stretched image.

    .avia-testimonial-image, .avia-testimonial-image img {
    max-width: 80px;
    width: 80px;
    }

    Regards,

    Ismael

    in reply to: dummy content will not load #134898

    Hey,

    URL deleted. :)

    Cheers,

    Ismael

    in reply to: Breadcrumb based on Menu Structure #135392

    Hi,

    I’m sure it is possible to use the plugin. You can then insert the breadcrumb code on functions-enfold.php, find this code:

    //advanced title + breadcrumb function
    if(!function_exists('avia_title'))
    {
    function avia_title($args = false, $id = false)
    {
    global $avia_config;

    if(!$id) $id = avia_get_the_id();

    $defaults = array(

    'title' => get_the_title($id),
    'subtitle' => "", //avia_post_meta($id, 'subtitle'),
    'link' => get_permalink($id),
    'html' => "<div class='{class} title_container'><div class='container'><{heading} class='main-title'>{title}</{heading}>{additions}</div></div>",
    'class' => 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    'breadcrumb' => true,
    'additions' => "",
    'heading' => 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    );

    if ( is_tax() || is_category() || is_tag() )
    {
    global $wp_query;

    $term = $wp_query->get_queried_object();
    $defaults['link'] = get_term_link( $term );
    }
    else if(is_archive())
    {
    $defaults['link'] = "";
    }

    // Parse incomming $args into an array and merge it with $defaults
    $args = wp_parse_args( $args, $defaults );
    $args = apply_filters('avf_title_args', $args, $id);

    // OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
    extract( $args, EXTR_SKIP );

    if(empty($title)) $class .= " empty_title ";
    if(!empty($link)) $title = "<a href='".$link."' rel='bookmark' title='".__('Permanent Link:','avia_framework')." ".esc_attr( $title )."'>".$title."</a>";
    if(!empty($subtitle)) $additions .= "<div class='title_meta meta-color'>".wpautop($subtitle)."</div>";
    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));

    $html = str_replace('{class}', $class, $html);
    $html = str_replace('{title}', $title, $html);
    $html = str_replace('{additions}', $additions, $html);
    $html = str_replace('{heading}', $heading, $html);

    if(!empty($avia_config['slide_output']) && !avia_is_dynamic_template($id) && !avia_is_overview())
    {
    $avia_config['small_title'] = $title;
    }
    else
    {
    return $html;
    }
    }
    }

    Please hire a freelance developer to help you integrate the plugin.

    Regards,

    Ismael

    in reply to: remove the sidebar in the webshop #134708

    Hey,

    Glad we could help. ;)

    Cheers,

    Ismael

    in reply to: Mido's question. #135389

    Hi,

    Which slider are we talking about here? Layer Slider, Easy Slider?

    You can add this on your custom.css or Quick CSS to show the numbers:

    .avia-slideshow-dots a {
    display: inline-block;
    height: 13.5px;
    width: 13.5px;
    border-radius: none;
    background: #000;
    opacity: 0.6;
    filter: alpha(opacity=60);
    text-indent: 0;
    overflow: visible;
    margin: 0 1px;
    padding: 7px;
    color: black!important;
    font-size: 30px;
    border: none !important;
    background: transparent !important;
    }

    Regards,

    Ismael

    in reply to: Table font color different in alternating rows #135385

    Hey,

    Please add this on your custom.css or Quick CSS:

    .main_color tr:nth-child(even) {
    color: #121212;
    }

    Regards,

    Ismael

    in reply to: Posts – Side screen navigation #135388

    Hi,

    Edit template-builder.php, find this code:

    echo " </div><!--end builder template-->";

    Below, add this code:

    $pagelist = get_pages('sort_column=menu_order&sort_order=asc');
    $pages = array();
    foreach ($pagelist as $page) {
    $pages[] += $page->ID;
    }

    $current = array_search(get_the_ID(), $pages);
    $prevID = $pages[$current-1];
    $nextID = $pages[$current+1];
    ?>

    <?php if (!empty($prevID)) { ?>
    <a class="avia-post-nav avia-post-prev without-image" href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">Previous</a>
    </a>
    <?php }
    if (!empty($nextID)) { ?>
    <a class="avia-post-nav avia-post-next without-image" href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Next</a>
    <?php } ?>

    Edit page.php, find this code:

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'page' );
    ?>

    Add this:

    <?php $pagelist = get_pages('sort_column=menu_order&sort_order=asc');
    $pages = array();
    foreach ($pagelist as $page) {
    $pages[] += $page->ID;
    }

    $current = array_search(get_the_ID(), $pages);
    $prevID = $pages[$current-1];
    $nextID = $pages[$current+1];
    ?>

    <?php if (!empty($prevID)) { ?>
    <a class="avia-post-nav avia-post-prev without-image" href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">Previous</a>
    </a>
    <?php }
    if (!empty($nextID)) { ?>
    <a class="avia-post-nav avia-post-next without-image" href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Next</a>
    <?php } ?>

    It doesn’t look exactly like the post nav but the it works.

    Regards,

    Ismael

    in reply to: Search Feature in header of Enfold #135384

    Hi,

    It should be there by default. Go to Appearance > Menu panel. On Theme Locations, select a Main Menu.

    Regards,

    Ismael

    in reply to: social icons in header do not show #134604

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    in reply to: something funky going on with enfold.css #135124

    Hey,

    Thanks for the tip. Glad it is working now.

    Cheers,

    Ismael

    Hey,

    Glad you figured it out.

    Cheers,

    Ismael

    in reply to: change horizontal ruler colour #135320

    Hi,

    You can use this:

    .main_color .hr-inner {
    border-color: green;
    }

    Remove browser cache then reload the page.

    Regards,

    Ismael

    in reply to: Non Uppercase Widget Titles #135314

    Hi,

    What do you mean by “changing these to ‘special headings’ with a HR next to the text”?

    Regards,

    Ismael

    in reply to: Gallery image loading problem IE10 #134404

    Hi,

    Please try this:

    #top div .avia-gallery img {
    max-height: 100%;
    }

    Regards,

    Ismael

    in reply to: Toggles content #135317

    Hi,

    First, upgrade your theme to 1.9.1. Then switch the Advance Layout Editor to debug mode.

    Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

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

    You can now see the actual shortcode below the Advance Editor. You can combine shortcodes like this:

    [av_tab_container position='sidebar_tab sidebar_tab_left' boxed='border_tabs' initial='1']
    [av_tab title='Tab 1' icon_select='no' icon='1']
    Tab Content goes here
    [av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
    [/av_tab]
    [av_tab title='Tab 2' icon_select='no' icon='1']
    Tab Content goes here
    [av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#000000' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
    [/av_tab]
    [/av_tab_container]

    The code above is the tab shortcode with button shortcode inside the toggles.

    Regards,

    Ismael

    in reply to: Changing sidebar width #134639

    Hey,

    Please add this on your custom.css at the very bottom:

    @media only screen and (min-width: 1140px) {
    .responsive .container .twelve.units {
    width: 1030px !important;
    }
    }

    Regards,

    Ismael

    in reply to: Header menu resize #134751

    Hi,

    Please add this on your custom.css or Quick CSS

    @media only screen and (min-width: 768px) and (max-width: 989px) {

    .main_menu ul:first-child > li > a {
    padding: 0 8px;
    font-size: 11px;
    }
    }

    Regards,

    Ismael

    in reply to: Continuous background image and page-specific backgrounds #135103

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: Co-Authors Plus PLEASE #131083

    Hi,

    Sorry but we really don’t give support for third party plugins. The best way to do is to hire a freelancer developer or contact the plugin author.

    Sorry for this. :(

    Regards,

    Ismael

    in reply to: Change Submit Button Color #135078

    Hi,

    I guess you managed to change the button color:

    .page-id-1167 .main_color input[type='submit'] {
    background: #00121d;
    }

    Nice website.

    Regards,

    Ismael

Viewing 30 posts - 61,891 through 61,920 (of 64,054 total)