Forum Replies Created

Viewing 30 posts - 59,041 through 59,070 (of 67,463 total)
  • Author
    Posts
  • in reply to: Single Post pages : Delete some parts #255470

    Hey!

    Thank you for the update.

    Sure, you can copy the sidebar.php file on your child theme folder. This will override the parent theme’s sidebar.php.

    Cheers!
    Ismael

    in reply to: Sidebar navigation link bounding box – off #255468

    Hey!

    Thank you for the link. It looks good on my end. Glad you figured it out. ;)

    Best regards,
    Ismael

    in reply to: Layerslide won't edit or save #255467

    Hey!

    Thank you for the update.


    @codedbydesign
    : Please post the login details here and set it as a private reply. We would like to check it on our end.


    @brad86
    : Please post the website url here and set it as a private reply. Thanks!

    Cheers!
    Ismael

    in reply to: add phone # to the right of Nav Menu Bar #255461

    Hi boag!

    Thank you for using the theme!

    You can add this on functions.php:

    add_action('ava_after_main_menu','ava_phone_after_main_menu');
    
    function ava_phone_after_main_menu() {
    	echo "<div class='header-phone-number'>PHONE NUMBER HERE</div>";
    }

    Then use this code on Quick CSS:

    div.header-phone-number {
    position: absolute;
    right: 20px;
    top: 8px;
    color: blue;
    }

    Best regards,
    Ismael

    in reply to: Align main navigation to bottom on large navigation #255455

    Hi!

    Glad we could help. If you have any questions, let us know.

    Best regards,
    Ismael

    Hey!

    I hope it worked. If you have any questions, let us know.

    Cheers!
    Ismael

    in reply to: Inserting portfolio #254977

    Hey!

    Thank you for the info.

    As long as you didn’t modify anything on the theme files, you won’t lose any theme options. Did you add all the css modifications on the Quick CSS field? If you use the custom.css for the css modifications, please create a backup of the file. It is safe to override the theme files because the theme options are saved on the database.

    Regards,
    Ismael

    in reply to: Styling Issues #254970

    Hi!

    Thank you for the update.

    Please use this on Quick CSS or custom.css:

    div#layer_slider_1.main_color {
    background-color: #ffffff !important;
    }

    Let us know if it works.

    Best regards,
    Ismael

    in reply to: formatting issues with posts created by other plugins #254967

    Hi!

    Thank you for the update.

    Please use this for the WP Courseware posts:

    .single-course_unit div.entry-content {
    padding-left: 130px;
    }

    And this one for the All In One Calendar posts:

    .single-ai1ec_event div.entry-content {
    padding-left: 90px;
    }

    Cheers!
    Ismael

    in reply to: Layerslide won't edit or save #254958

    Hey codedbydesign!

    We’re very sorry that you’re having this issue.

    First, please update the theme to version 2.7. Download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Please add this on functions.php if you want to use the layer slider as a stand alone plugin. This will disable the default layer slider that is included within the theme, find this code on line 16:

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

    Add this code below:

    add_theme_support( 'deactivate_layerslider' );
    

    Once the default layer slider is disabled, please install the plugin. Let us know if it works.

    Regards,
    Ismael

    in reply to: Blog posts not responsive on mobile phones #254948

    Hey!

    Thank you for the update.

    Please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) and (min-width: 480px) {
    #top #main .avia-section .template-page {
    width: 428px;
    }
    
    .avia-section.av-minimum-height .container .content {
    display: block;
    }
    }

    I’m not sure why the default display: table-cell property for the .content is screwing the responsiveness of the theme. I’ll forward this thread to Kriesi.

    Best regards,
    Ismael

    in reply to: Widget over top header! Is it possible? #254932

    Hey mariotronik!

    Thank you for using the theme!

    Unfortunately, this is not possible with the theme and beyond the scope of support. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you want to investigate this particular modification on your own, you can start with the header.php. Look for this code:

    <?php 
    	if(!$blank) //blank templates dont display header nor footer
    	{ 
    		 //fetch the template file that holds the main menu, located in includes/helper-menu-main.php
             get_template_part( 'includes/helper', 'main-menu' );
    
    	} ?>

    On top of that code, you can add a slider using a plugin or use the premium layer slider version then utilize the do_shortcode function to render the slider on top of the header.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Regards,
    Ismael

    in reply to: Issues with some inner content width below #254924

    Hey Bruno!

    Thank you for using the theme.

    I’m not sure why the responsiveness is gone but please try to disable the minify plugin then use this instead: http://wordpress.org/plugins/bwp-minify/

    You can add an embedded css styl on the wp dashboard with this:

    function ava_css_dashboard() {
    echo '<style type="text/css"> /* CSS STYLE HERE /* </style>';
    }
    
    add_action('admin_head', 'ava_css_dashboard');

    Cheers!
    Ismael

    Hey!

    Thank you for the info.

    Did you recently update to WP 3.9? We would like to check the actual website. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    You might want to increase the wordpress php memory limit to at least 128M. Depending on your hosting environment you might experience an issue when trying to access the Advance Layout Builder. This is usually due to the builder timing out because of a memory limit in your server environment. The first thing you can do to fix this is to add the following lines in your wp-config.php file located at the root of wp directory:

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

    You can also contact your host if you’re not comfortable doing the adjustments yourself. Refer to this link for more info: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

    in reply to: Social Icons, additional text? #254912

    Hi!

    Glad you figured it out. If you have any questions, let us know.

    Best regards,
    Ismael

    Hi!

    Thank you for the update.

    We would like to see the actual website. We will know if the page hierarchy is set up correctly because wp will assign the class current-page-ancestor on the parent menu item.

    Regarding the migration, please use this plugin: http://wordpress.org/plugins/wp-migrate-db/
    Refer to this link for proper migration: https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684

    Make sure that you create a backup of your database and theme files just in case. :)

    Regards,
    Ismael

    in reply to: Form fields, change color on Focus #254899

    Hi!

    Thank you for visiting the support forum.

    Did it work for you? You can use this if you want:

    #top input[type="text"]:focus, #top input[type="password"]:focus, #top input[type="email"]:focus, #top input[type="number"]:focus, #top input[type="url"]:focus, #top input[type="tel"]:focus, #top input[type="search"]:focus, #top textarea:focus {
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
    color: #555;
    background-color: #FFFA99 !important;
    }

    Regards,
    Ismael

    in reply to: Use Special Heading Modern Font #254897

    Hi!

    Thank you for using the theme.


    @begrafiks
    : Thanks for helping out!


    @jliamgrist
    : What is the font that you set on Enfold > Styling > Heading Font? If you want to add a google font on the layer slider, go to the LayerSlider panel. Look for the Load Google Fonts then search for the google font that you want on the google font library.

    Cheers!
    Ismael

    in reply to: Sidebar navigation link bounding box – off #254894

    Hi Jason!

    Thank you for the update.

    As long as it works for you then it’s ok. If you don’t mind, we would like to see the actual website.

    Cheers!
    Ismael

    in reply to: Portfolio Grid Filter Question #254893

    Hey lowjoecreative!

    Thank you for using the theme!

    Please edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 518:

    $output .= 	"<span class='text-sep ".$category->category_nicename."_sort_sep'>/</span>";
    

    Replace it with this:

    $output .= 	"<span class='text-sep ".$category->category_nicename."_sort_sep'>•</span>";
    

    I hope that helps.

    Cheers!
    Ismael

    in reply to: Enfold Text / Button Alignment Question #254892

    Hey cameron329!

    Thank you for using the theme.

    In order to help you with the issue, we will need to see the actual live website. If you don’t mind, please post the website url here. We will be happy to provide you with the proper solution once we have taken a look at the website.

    Cheers!
    Ismael

    in reply to: Visual Editor not working after update to WP 3.9 #254889

    Hi!


    @insightmike
    : Do you mind if we take a look at the website? Do you have Enfold 2.7 running? Please try to empty cache if you’re using a cache plugin like W3 Total Cache and purge the cache on your server if there is any.

    Regards,
    Ismael

    in reply to: link button not resizing for smartphone #254888

    Hey!

    Thank you for the update.

    I’m not sure why it is not centered but please add this inside the media query above:

    div#layerslider_41 div.avia-button-wrap.avia-button-center {
    margin-left: -20px;
    }

    Adjust the negative margin to center align the button.

    Cheers!
    Ismael

    in reply to: Header issues since updates #254886

    Hi!

    Thank you for the update.

    1.) Not sure why it is happening on iPad. Let me ask Josue to check this on his iPad.

    2.) Please add this on Quick CSS or custom.css to position the social icons below the logo, center aligned.

    @media only screen and (max-width: 767px) {
    .responsive.html_header_top #header_main .social_bookmarks {
    width: auto;
    position: absolute;
    left: 50%;
    top: 80px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    }
    
    .responsive .logo {
    margin-bottom: 40px;
    }
    }

    Regards,
    Ismael

    in reply to: Single Post pages : Delete some parts #254880

    Hi mikehirsch!

    Thank you for using the theme!

    You can remove the comment section with this on Quick CSS or custom.css:

    div.comment-entry.post-entry {
    display: none;
    }

    To remove the dummy widgets, edit sidebar.php then look for this code on line 75:

    //default dummy sidebar
            if ($default_sidebar)
            {
                 avia_dummy_widget(2);
                 avia_dummy_widget(3);
                 avia_dummy_widget(4);
            }

    Replace it with this:

    //default dummy sidebar
            if ($default_sidebar)
            {
                 //avia_dummy_widget(2);
                 //avia_dummy_widget(3);
                 avia_dummy_widget(4);
            }

    Regards,
    Ismael

    in reply to: advancing with same taxonomy in portfolio question #254877

    Hey!

    Thank you for the update.

    Unfortunately, the function is limited on sorting by portfolio category. The customization you’re after is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Cheers!
    Ismael

    in reply to: No link in the button promo box? #254873

    Hi Marc!

    Thank you for using the theme!

    Did you recently update to WP 3.9? Please download the latest version of the theme. That should fix the issue. If you don’t mind, we would like to see the actual website.

    Best regards,
    Ismael

    in reply to: Header Icon problem in explorer #254440

    Hey!

    Thank you for the update.

    I checked the website on IE 10 and scroll the page a few times. The icon is positioned properly.

    Although I noticed that you’re using a very old version of the theme. Please download the latest Enfold version 2.7 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Ismael

    Hey!

    Thank you for the update.

    Yes, there is a solution to change the flag with php but it is outside the scope of support and the task is quite involved. The flag hook and css code is working properly. You might need to hire a freelance developer to modify the theme for you. Please visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Cheers!
    Ismael

    in reply to: link button not resizing for smartphone #254434

    Hi Marssolutions!

    Thank you for using the theme!

    You can adjust the css and use media query to resize the button on mobile devices. Add this on Quick CSS or custom.css:

    @media all and (max-width: 767px) {
    .avia-button.avia-size-small {
    padding: 4px 5px 5px;
    font-size: 11px;
    min-width: 70px;
    }
    }

    Cheers!
    Ismael

Viewing 30 posts - 59,041 through 59,070 (of 67,463 total)