Forum Replies Created

Viewing 30 posts - 62,341 through 62,370 (of 64,046 total)
  • Author
    Posts
  • Hi,

    1.) Make sure you fill out Enfold > Header > Phone Number or small info text. Edit header.php, find this code

    $phone = avia_get_option('phone');
    $phone_class = !empty($nav) ? "with_nav" : "";
    if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";

    Cut it then place it below this comment:

    /*
    * display the themes social media icons, defined in the wordpress backend
    * the avia_social_media_icons function is located in includes/helper-social-media-php
    */

    Add this on your custom.css or Quick CSS

    .phone-info {
    padding-top: 10px;
    margin-left: -20px;
    }

    2.) Please give us a link to the website. We need to inspect your button. Try to change the input button color on Quick CSS

    .main_color input[type='submit'] {
    background-color: red;
    }

    Regards,

    Ismael;

    in reply to: Comments section not showing up #131768

    Hi,

    Edit single-portfolio.php, find this code:

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

    Below, add this code:

    //wordpress function that loads the comments template "comments.php"
    comments_template( '/includes/comments.php');

    Regards,

    Ismael

    in reply to: Image column 1/5 non-responsive #131550

    Hi,

    Did you insert the Image element inside a 1/5 column element? The images with or without links inside a 1/5 column are responsive on my end. Please upgrade to Enfold 1.8.4.

    Can you give us a screenshot?

    Regards,

    Ismael

    in reply to: Contact Form in Template? #131758

    Hi,

    Are you trying to copy the html rendered by the shortcode? You can just copy the contact form shortcode:

    [av_contact email=///' button='Submit' title='Send us mail' sent='Your message has been sent!' autorespond='' captcha='']<br />
    [av_contact_field label='Name' type='text' check='is_empty']<br />
    [av_contact_field label='E-Mail' type='text' check='is_email']<br />
    [av_contact_field label='Subject' type='text' check='is_empty']<br />
    [av_contact_field label='Message' type='textarea' check='is_empty']<br />
    [/av_contact]

    This is the actual HTML input

    <form action="http://localhost/kriesi/enfold/?page_id=2307" method="post" class="ajax_form avia-builder-el-0 avia-builder-el-no-sibling " data-avia-form-id="1"><fieldset><h3>Send us mail</h3><p class='' id='element_avia_name_1'><label for="avia_name_1">Name <abbr class="required" title="required">*</abbr></label> <input name="avia_name_1" class="text_input is_empty" type="text" id="avia_name_1" value=""/></p><p class='' id='element_avia_e-mail_1'><label for="avia_e-mail_1">E-Mail <abbr class="required" title="required">*</abbr></label> <input name="avia_e-mail_1" class="text_input is_email" type="text" id="avia_e-mail_1" value=""/></p><p class='' id='element_avia_subject_1'><label for="avia_subject_1">Subject <abbr class="required" title="required">*</abbr></label> <input name="avia_subject_1" class="text_input is_empty" type="text" id="avia_subject_1" value=""/></p><p class='' id='element_avia_message_1'> <label for="avia_message_1" class="textare_label hidden textare_label_avia_message_1">Message <abbr class="required" title="required">*</abbr></label> <textarea name="avia_message_1" class="text_area is_empty" cols="40" rows="7" id="avia_message_1" ></textarea></p><p class="hidden"><input type="text" name="avia_avia_username_1" class="hidden " id="avia_avia_username_1" value="" /></p><p class=""><input type="hidden" value="1" name="avia_generated_form1" /><input type="submit" value="Submit" class="button" /></p></fieldset></form><div id="ajaxresponse_1" class="ajaxresponse ajaxresponse_1 hidden"></div>

    Regards,
    Ismael

    in reply to: Layer Slider – Effects failure on basic design #131733

    Hi,

    You can add the missing letter spacing on your custom.css or Quick CSS

    .ls-s-1 {
    letter-spacing: 100px !important;
    }

    To make sure you’re targeting the correct element, add a unique selector for each LayerSlider layer.

    For example, you can enclose “STRATEGIC FOCUS” on a p tag with a unique selector:

    <p class="strategic-selector">STRATEGIC FOCUS</p>

    If some of the embedded css code like letter-spacing doesn’t work, you can override them on your custom.css or Quick CSS

    p.strategic-selector {
    letter-spacing: 100px !important;
    }

    I think LayerSlider is awesome. Thanks to the great minds of Kreatura Media. :)

    Regards,

    Ismael

    Hi,

    It won’t affect your site so you might want to hide the warning like Dude said.

    http://codex.wordpress.org/Editing_wp-config.php#Debug

    Regards,

    Ismael

    in reply to: Javascript installation question #131828

    Hi,

    You can paste the javascript on footer.php, find this code:

    <a href='#top' id='scroll-top-link' class='avia-font-entypo-fontello'></a>
    <div id="fb-root"></div>

    Place the script on top of it.

    Regards,

    Ismael

    in reply to: Only show title at blog posts #131546

    Hey,

    Glad it worked. :)

    Note that the code above will hide all post slider images on single post view.

    Cheers,

    Ismael

    in reply to: change background color for top heading section #129401

    Hi,

    Please use this:

    .header_color .header_bg {
    background-color: rgba(255, 0, 0, 0.6);
    }

    Regards,

    Ismael

    Hi,

    1.) Edit functions.php, add this code:

    add_filter('avf_title_tag','new_avf_title_tag');
    function new_avf_title_tag($title)
    {
    $title = get_bloginfo('name').'';
    return $title;
    }

    2.) Edit footer.php, find this code:

    echo "<div class='sub_menu_socket'>";
    $args = array('theme_location'=>'avia3', 'fallback_cb' => '', 'depth'=>1);
    wp_nav_menu($args);
    echo "</div>";

    Replace it with:

    $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');

    echo avia_social_media_icons($social_args);

    echo "<div class='sub_menu_socket'>";
    $args = array('theme_location'=>'avia3', 'fallback_cb' => '', 'depth'=>1);
    wp_nav_menu($args);
    echo "</div>";

    Add this on your custom.css or Quick CSS

    #socket .social_bookmarks {
    position: relative;
    float: right;
    }

    Regards,

    Ismael

    in reply to: Enfold, Social Icon Colour change #131646

    Hi,

    You can change the hover effect using this

    #top .social_bookmarks_mail:hover a{color:#fff; background-color:#9fae37; }

    Change the colors.

    Regards,

    Ismael

    in reply to: Shadow on bottom of colour section #131641

    Hi,

    He added the shadow on the About Us Color Section after the Color Section with the parallax effect element.

    There are two Color Sections right after the next.

    Regards,

    Ismael

    in reply to: Button – on click move to part of the page #131639

    Hi,

    Configure the Button Link, set to manual then add the url or the section/element id. For example, if you want to scroll to the top you can this link

    http://localhost/kriesi/enfold/#top

    or simply add the selector

    #top

    Regards,

    Ismael

    in reply to: Page Flashes Background – when selecting Navigation #129377

    Hey,

    Let us know if we can help. :)

    Regards,

    Ismael

    in reply to: Blog Grid (image display) + 1 other issue #131634

    Hi,

    1.) Looks like you have a lot of image on landscape mode. Please add this on your custom.css or Quick CSS

    .attachment-no.scaling.wp-post-image {
    width: 100%;
    height: 100%;
    }

    2.) Are you sure you inserted the Blog Posts element then selected the right category under “Which categories should be used for the blog?”. I don’t see the html for Blog Posts element being rendered on this page: http://servingdope.com/man-on-the-street/. All I can see are couple of text blocks with special heading in between.

    Regards,

    Ismael

    in reply to: Help! #131623

    Hi,

    Increase the memory limit. Edit wp-config.php, add this code.

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

    If that is not working, we suggest to create a new installation of wordpress and configure the php memory limit options right before you activate the Enfold theme.

    Regards,

    Ismael

    in reply to: How to add tel: #131581

    Hi,

    Go to Enfold > Header > Header Type. Select a header that offers the option Phone Number or small info text.

    Regards,

    Ismael

    Hi,

    Can you please give us a link to the website? Note that Enfold works on wp version 3.5 or higher.

    Regards,

    Ismael

    in reply to: Blog Posts and Grid Layout #131598

    Hey,

    Glad it worked. You can also use this plugin:

    http://wordpress.org/plugins/post-types-order/

    Regards,

    Ismael

    Hi,

    3.) Please try this plugin: http://wordpress.org/plugins/font-uploader/installation/

    Regards,

    Ismael

    in reply to: How can I user jQuery in Layout Builder or in widgets? #131557

    Hi,

    You can place it js > avia.js. All jquery scripts go that way, or add it on footer.php right before </body] tag.

    Regards,

    Ismael

    in reply to: Only show title at blog posts #131544

    Hi,

    You can hide the images using this on your custom.css or Quick CSS

    .single .slide-image {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Color Section uncompatible with iPhone / iPad… #131539

    Hi,

    Can you give us a link to the website?

    Under the Color Section options, you can apply a unique css id selector. Add the id “new-color-section” for example then specify the height on your custom.css or Quick CSS:

    #new-color-section {
    height: 500px;
    }

    Let me tag Devin to check the parallax effect on iPad.

    Regards,

    Ismael

    in reply to: Desktop shortcut image – smart phones #131538

    Hi,

    You want to create a shortcut of your website on your mobile phone then change the icon? Is that correct?

    http://uncorkedstudios.com/2011/09/06/creating-a-custom-icon-for-the-add-to-home-screen-on-iphone/

    Regards,

    Ismael

    in reply to: Hover over linked images FireFox issue #131529

    Hi,

    Image alignment has been fixed on the latest update of Enfold. You have version 1.3.1, the new version of Enfold is 1.8.4. Please download the latest version of the theme then upload it via FTP. Create a backup of your theme files and your database for security.

    Regards,

    Ismael

    in reply to: Iconlist Headings & SEO #131524

    Hi,

    Edit config-templatebuilder > aviashortcodes > iconlist.php, find this code:

    "<h4 class='iconlist_title'>".$atts['title']."</h4>";

    Replace h4.

    Regards,

    Ismael

    in reply to: Slider only slides twice #129870

    Hey,

    Please let us know if it is working now. You might want to upgrade to Enfold 1.8.4.

    Cheers,

    Ismael

    in reply to: Google Map on home page #131505

    Hi,

    Pedro is correct, you can use the text widget or use the Enfold Google Map widget. Create a custom widget area then add the Enfold Google Map widget. Edit your “Contact” page, switch to Advance Layout Editor. Under content element tab, insert a Sidebar element then select the custom widget area that you created.

    Regards,

    Ismael

    in reply to: Menu problem (fade before click) #131523

    Hi,

    Can you give us a link to the website?

    Note that the Enfold theme does not fully support IE7, we can’t give you extensive support with the issue.

    Regards,

    Ismael

    in reply to: Flat Button Rollover #131284

    Hi,

    If you don’t have the unique css selector, just inspect the button that you created and use its selector instead of the “.orange-button a” example.

    Regards,

    Ismael

Viewing 30 posts - 62,341 through 62,370 (of 64,046 total)