Forum Replies Created

Viewing 30 posts - 63,781 through 63,810 (of 66,988 total)
  • Author
    Posts
  • in reply to: Adding Google Fonts (plural) #166980

    Hey timfl!

    If you want to add more than one google font, the code should look like this:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Alef'] = 'Alef';
    $fonts['Roboto'] = 'Roboto';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Alef'] = 'Alef';
    $fonts['Roboto'] = 'Roboto';
    return $fonts;
    }

    Regards,
    Ismael

    in reply to: WordPress SEO by YOAST break my dashboard! #166977

    Hi!

    Did you set the homepage on Enfold > Theme Options > Frontpage?

    http://relatiidecuplu.com/relatii-de-cuplu/

    Best regards,
    Ismael

    Hey!

    Please switch your theme to debug mode. Edit function.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 will be able to see the actual shortcode below the builder. This is the whole shortcode for “One Page Portfolio”.

    http://pastebin.com/B32C7ZSB

    Cheers!
    Ismael

    in reply to: Paypal and zooz payment integration #166448

    Hello bizzappsconsult!

    I’m not sure if this is possible. I can only find zooz plugin for woocommerce.

    http://superplug.in/product/woocommerce-2-zooz-payment-gateway/

    Regards,
    Ismael

    in reply to: Keywords #166447

    Hi bizzappsconsult!

    You can use SEO Yeost plugin.

    http://wordpress.org/plugins/wordpress-seo/

    Regards,
    Ismael

    in reply to: visual editor strips third-party shortcode #166446

    Hello yukanl!

    Have you tried to insert it again using the Visual Editor of the page?

    Regards,
    Ismael

    in reply to: Translation WordPress website #166445

    Hello bizzappsconsult!

    1.) WPML is the only configured plugin that you can use for Enfold. Yes, you can use qTranslate but we can’t assure that the plugin is compatible with the theme.

    2.) What do you mean delete all pages? The search field will search all of the created pages, post, portfolio items, products that you created inside the wp admin dashboard.

    Cheers!
    Ismael

    in reply to: blog image don't appear #166442

    Hi giammi73!

    Go to Enfold > General Settings > Blog Style, select any kind of layout except for the Grid Layout. Edit your “Blog” page, switch to Advance Layout Editor then insert the Blog Post element. Select “Grid Layout” as blog style. :)

    Best regards,
    Ismael

    Hey rhunecke!

    Edit functions-enfold.php, find this code:

     $entries['prev'] = get_previous_post($same_category);
            $entries['next'] = get_next_post($same_category);

    Replace it with:

     $entries['prev'] = get_previous_post($same_category, 'CATEGORY ID HERE');
            $entries['next'] = get_next_post($same_category, 'CATEGORY ID HERE');

    Add the category id of the category that you want to exclude.

    Regards,
    Ismael

    Hi!

    1.) This is a css to make a large part of the icon box clickable.

    .iconbox_content_title a {
    display: block;
    position: relative;
    width: 200px;
    height: 200px;
    z-index: 9999;
    }
    
    .iconbox_content p {
    position: absolute;
    top: 20px;
    }

    2.) You need to use “Fixed Header with Social Icons and additional Navigation” as the Header Type then we can modify the css positioning of the contact number and the social icons.

    Best regards,
    Ismael

    Hi!

    You can add the avia button markup inside a layer.

    <div class="avia-button-wrap layerslider-button avia-button-center  avia-builder-el-1  el_after_av_blog  avia-builder-el-last  "><a href="LINK HERE" class="avia-button avia-icon_select-yes avia-color-theme-color avia-size-small avia-position-center "><span class="avia_iconbox_title">THIS IS A BUTTON</span></a></div>
    

    Add this on your custom.css or Quick CSS to change the hover effect.

    .main_color .layerslider-button .avia-color-theme-color, .main_color .avia-color-theme-color:hover {
    background: red;
    }

    Best regards,
    Ismael

    in reply to: Blog Styles #166429

    Hello!

    Please add the sidebar on the Blog page, we need to inspect it. I can’t reproduce the same issue on my end. Have you tried deactivating all your plugins? Maybe a plugin is inserting a div on the template.

    Regards,
    Ismael

    in reply to: !URGENT! # in-page links on main menu not working #166426

    Hey!

    Did you check if they are unique? Maybe you’re using a selector name twice.

    Regards,
    Ismael

    in reply to: Enfold: Navigation active & selection area #166425

    Hey zerozendesign!

    1.) You can add this on your custom.css or Quick CSS to define the active menu color:

    #top .header_color .current-menu-item a {
    color: red !important;
    }

    2.) What is the code you added to adjust the header height?

    Cheers!
    Ismael

    Hey!

    Unfortunately, you can’t modify or add css for grand grand child pages because WP doesn’t give them unique selectors.

    Best regards,
    Ismael

    in reply to: Yoost SEO plugin conflict #166419

    Hey!

    You will not lose your configurations and content when you update the theme. Just follow the instructions on how to override the theme files via FTP. You should create a backup of the files you modified like custom.css etc. A lot of Enfold users are using the SEO Yeost plugin without problem or issues.

    Regards,
    Ismael

    in reply to: One Page different in Chrome / Firefox #166416

    Hi jmaguirrei!

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

    .responsive .home {
    overflow-x: hidden;
    overflow-y: hidden;
    }

    Cheers!
    Ismael

    in reply to: I want to insert wpml selector after logo #166414

    Hi!

    You can adjust the position of the language selector using this:

    #lang_sel_list {
    position: relative;
    left: 40%;
    top: 60px;
    }

    Best regards,
    Ismael

    in reply to: Dancing Navigation #166413

    Hi!

    I visited your site and I don’t see the shuffling issue. I think Dude’s code fixed it. What browser are you using when you test the site?

    Best regards,
    Ismael

    in reply to: WordPress SEO by YOAST break my dashboard! #166411

    Hi mmi!

    A lot of Enfold users are using Yeost. Can you give us a link to your website? Do you have the latest version of Enfold, which is 2.2?

    Regards,
    Ismael

    in reply to: Color Section in Mobile #166408

    Hi!

    You decrease the h3 size a little for mobile view. It will give some space for the button. :)

    @media only screen and (max-width: 767px) {
    h3 {
    font-size: 18px;
    }
    }

    Best regards,
    Ismael

    in reply to: No data received. #166402

    Hey kooop!

    Looks like a lot of GoDaddy users is experiencing the issue. Is GoDaddy your host?

    Visited the link and I can see that you managed to add content and create pages.

    Please do the following steps:

    1. Close browser and delete all cookies/cache.
    2. Open the FTP client and log into your website’s root folder.
    3. Download “.htaccess” file.
    4. Delete the .htaccess file from your webroot folder then press the reload button on FTP client to make sure the .htaccess is gone.
    5. Open your website and refresh the page few more times. Try to log in.
    6. Put the SAME .htaccess file back to your site’s root folder.Wait few seconds and refresh FTP to make sure the file is there and it has at least -rw—-r– permissions.
    7. Open your website,refresh the page, try to log in.You SHOULD be able to log in with the SAME .htaccess file that was causing the problem earlier.

    Regards,
    Ismael

    • This reply was modified 12 years, 2 months ago by Ismael.
    in reply to: Text Box Padding #166401

    Hi web4smallbusiness!

    You can add this on your custom.css or Quick CSS:

    body .column-top-margin {
    margin-top: 20px;
    }
    
    .avia-slideshow {
    position: relative;
    margin: 20px 0;
    }

    Regards,
    Ismael

    in reply to: Theme conflics with audio plugin #166399

    Hi headbentdesign!

    You can find the file on js > mediaelement > skin-1 > mediaelementplayer.css. You can remove the code and leave it blank but the theme’s native audio player will break. What is the conflict? Is it a styling issue?

    Regards,
    Ismael

    in reply to: Youtube Link #166397

    Hi dmiklus!

    Can you post the youtube link code here? Add rel=”noLightbox” on the anchor tag to avoid opening the link as lightbox.

    <a rel="noLightbox" href="YOUTUBE LINK HERE">YOUTUBE LINK</a>

    Cheers!
    Ismael

    in reply to: Social Media Roll Over Icons #166396

    Hey!

    Go to Enfold > Header > Header Type. Select the headers with social icons.

    Cheers!
    Ismael

    in reply to: Enfold Image Overlay Opacity with CSS #166395

    Hey!

    What you’re asking is a bit complicated and I doubt if this can be done via CSS. Please hire someone to modify the overlay effect.

    Best regards,
    Ismael

    Hey kriru!

    Did you place the main theme files on wp-content/themes folder?

    You should have this code for the following files:

    1.) styles.css

    /*
    Theme Name: Enfold Child
    Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating wil be much easier then.
    Version: 1.0
    Author: Kriesi
    Author URI: http://kriesi.at
    Template: enfold
    */
    
    /*Add your own styles here:*/

    2.) functions.php

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */

    3.) A screenshot.

    Best regards,
    Ismael

    in reply to: Reduce padding in menu and logo area. #166387

    Hi!

    Glad you fixed it. :)

    Cheers!
    Ismael

    in reply to: ALTER "MAIN COLOR" in the case of the MEMBERSHIP PAGE #166385

    Hey voicepro!

    1.) You can use this to alter the price table header background color:

    .main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-heading-row .pricing-extra {
    background-color: red;
    color: #ffffff;
    border-color: #ffff26;
    }
    
    .main_color .pricing-table li.avia-pricing-row, .main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-pricing-row .pricing-extra {
    background-color: red;
    color: #ffffff;
    border-color: #ffff26;
    }

    2.) Change the color of the promobox text using this:

    .avia-promocontent p {
    color: blue;
    }

    Regards,
    Ismael

Viewing 30 posts - 63,781 through 63,810 (of 66,988 total)