Forum Replies Created

Viewing 30 posts - 59,311 through 59,340 (of 67,572 total)
  • Author
    Posts
  • in reply to: How to make blog sortable #253061

    Hi xcv1001!

    Thank you for using the theme.

    1.) I’m sorry but that is not possible within the theme. Unfortunately, this 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 do visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    2.) Yes, there is an option to select which category or categories you want to show on the Post Slider or Fullwidth masonry. Edit the elements then look for Which Entries? option.

    Cheers!
    Ismael

    in reply to: Color Section Border #253060

    Hi!

    Glad it worked.

    Please try this one:

    .container_wrap {
    border-top: none;
    }

    Regards,
    Ismael

    Hey!

    Thank you for using the theme and sorry for the delay.

    A lot of users are using Yoast plugin and it works fine on their end. Maybe it is a combination of plugins that is causing the error. Glad you chose to use another plugin for this matter.

    Cheers!
    Ismael

    in reply to: Not shrink mobile logo #253057

    Hey herrbirk!

    Thank you for using the theme.

    Did you add a lot of css modifications for the header and logo? I’m sorry but the latest update with the new header configurator might render them useless. Please try to add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive .logo {
    position: static;
    height: 120px !important;
    float: none;
    }
    }

    Regards,
    Ismael

    in reply to: MegaMenu vertical #253056

    Hi ttnka!

    Thank yor using the theme.

    Once you enable the mega menu and added a column, click on the column menu item then enable the This column should start a new row option.

    Best regards,
    Ismael

    in reply to: Reduze image variations in upload/library #252552

    Hi Spiv!

    Thank you for using the theme!

    The thumbnails are needed for certain parts of theme like widgets, posts, portfolio etc. You can disable them on functions.php, look for this code:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );						// images for fullsize pages and fullsize slider

    For example, if you want to disable the the widget thumbnail size (36x36px), look for this code:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    

    Switch it to php comment. Replace it with this:

    //$avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    

    Regards,
    Ismael

    in reply to: Accordion stopped working #252551

    Hey!

    Thank you for the info.

    I’m sorry but we’re not sure of the issue since you updated the theme directly. Next time, please create a changelog of the modifications or use a child theme. Refer to this link: http://kriesi.at/documentation/enfold/using-a-child-theme/

    Please update your wordpress core files to 3.8.1. Download the wp files here: http://wordpress.org/download/release-archive/

    Cheers!
    Ismael

    in reply to: Enfold Showcase #252548

    Hey!


    @sundialstudios
    : Thanks for helping out. :)

    @absurdity: If you have any questions, definitely take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explation and awesomeness. You can also watch some of our Video Tutorials to learn more about the theme.

    Best regards,
    Ismael

    in reply to: abnormal breadcrumbs #252547

    Hi!

    Thank you for the update.

    Please post the login details here. We would like to check it on our end.

    Regards,
    Ismael

    Hi!

    Thank you for using the theme!

    I can be certain that the database error is not cause by the theme. Maybe, another plugin is causing that issue. 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

    Hey!

    Thank you for using the theme!

    Please try to update to Enfold 2.6.4. Sometimes, this issue means that some stylesheets are not updated properly.

    Cheers!
    Ismael

    in reply to: retina.js use in child theme template path #252540

    Hey basmati!

    Please use this on functions.php:

    if(!is_admin())
    {
    	add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100);
    }
    
    function avia_register_child_frontend_scripts()
    {
    	$child_theme_url = get_stylesheet_directory_uri();
            wp_enqueue_script( 'retina_js', $child_theme_url.'/js/retina.js', '', '', true );
    }

    Best regards,
    Ismael

    in reply to: Simple button usage #252537

    Hey EA Photo!

    Thank you for using the theme!

    I tested the shortcodes on my end and it works fine. If you don’t mind, we would like to see the actual page with the button.

    Regards,
    Ismael

    in reply to: Enfold theme with two sidebar #252536

    Hi MCVince!

    Thank you for using the theme!

    You can switch the page to Advance Layout Builder then insert 1/4 1/2 1/4 column layout. Insert the Widget Area element on the 1/4 columns layouts and the insert the content on the 1/2 column. I hope that helps.

    Cheers!
    Ismael

    in reply to: Dynamic toggle height #252533

    Hi!

    Thank you for the update.

    I’m sorry but the only solution that I can think of is to specify an actual height for the container:

    .js_active .toggle_content p {
        height: 700px;
    }

    Best regards,
    Ismael

    in reply to: Selected Header Link States #252528

    Hi!

    Thank you for the update.

    You need to set the page hierarchy if you want wp to detect and highlight the main menu when you click on sub level menu items. Please refer to this link for more info: http://en.support.wordpress.com/pages/page-attributes/

    Best regards,
    Ismael

    in reply to: Partner Logo element stopped working. #252526

    Hey Paul!

    Thank you for visiting the support forum!

    I checked the link (http://www.warrenbsi.com/buy-sell-planning/) and the logo/partner element is working as expected. There are two logos on the last row then it rotates back to the first set of logos. Is this fixed?

    Best regards,
    Ismael

    in reply to: Website Final Tweaks #252523

    Hey!

    Thank you for the info.

    Can you please give us an example link of the product? Where do you want the breadcrumbs to go?

    Regards,
    Ismael

    in reply to: problem with the switch to other pages #252522

    Hi osukaru!

    Thank you for using the theme!

    You’re using a very old version of the theme. Please download the latest version from your themeforest account then update the theme via FTP. Please refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    in reply to: Megamenu help #252521

    Hi!

    Did you try the suggestion above? You can insert a custom link and use it as the mega menu column. Just place a # (hashtag) for the menu url if you don’t want the heading to have links.

    Regards,
    Ismael

    in reply to: Customising the navigation drop down menu #252518

    Hi!

    Thank you for using the theme!

    Please use this on Quick CSS or custom.css:

    .header_color .main_menu .menu ul li a {
    color: blue;
    background: white;
    }

    For hover, use this:

    .header_color .main_menu .menu ul li a:hover {
    color: red;
    background: black;
    }

    Cheers!
    Ismael

    in reply to: Image links – how to? #252475

    Hey!

    The update is under approval, please wait for it on the theme update panel. :)

    Cheers!
    Ismael

    in reply to: Moving Function.php to child #252472

    Hey Richard!

    Thank you for using the theme!

    Are you trying to copy the function on your child theme functions.php? Please post the code here, we need to inspect it. If you don’t mind, please use pastebin.com for the code.

    Cheers!
    Ismael

    in reply to: How to resize the widht of sidebar #252471

    Hi Serena!

    Thank you for using the theme!

    Are you using a left or right sidebar? Anyway, please edit functions.php, find this code on line 152:

    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');

    Replace it with this:

    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    $avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');

    Best regards,
    Ismael

    in reply to: Embed I Frame of finanzen.de not work #252470

    Hey!

    Thank you for the info. :)

    Can you please post the code using pastebin.com? We would like to check it. Maybe, you’re using php and javascript codes which is not accepted on the wordpress editor.

    Cheers!
    Ismael

    in reply to: Color Section Border #252456

    Hey danieltjohnston!

    Thank you for the link.

    Please add this on Quick CSS or custom.css to remove the border at the top of the section:

    div#costsavings {
    border-top: none;
    }

    Regards,
    Ismael

    in reply to: Theme Styling #252455

    Hi JaredBurnett!

    Thank you for the info.

    We would like to see the actual website where this is happening. You can override the theme files via FTP. Please refer to this link: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Another thing that you can do is to delete the enfold.css file located on wp-content/uploads/dynamic_avia folder. After that make some changes on the theme options then save it. I hope that helps.

    Cheers!
    Ismael

    in reply to: Help Contact form #252454

    Hi Dominik!

    Thank you for using the theme!

    I’m sorry but I’m not sure what it is you’re trying to do. If you increase the field width to 50%, the second field will go at the bottom. If you don’t mind, please post a screenshot and the link to the website.

    Cheers!
    Ismael

    in reply to: Logo adjustments on mobile – after update #252449

    Hey!

    Thank you for the update.

    Please use this:

    @media only screen and (max-width: 767px) {
    .responsive .mobile_slide_out .logo {
    display: block;
    position: relative;
    margin: 0 auto;
    margin-bottom: 80px;
    }
    
    #advanced_menu_toggle, #advanced_menu_hide {
    display: block;
    position: absolute;
    right: 40%;
    top: 120px;
    }
    }

    Please visit Werkpress for further customization.

    Regards,
    Ismael

    in reply to: Fehlerhafte Navigation #252447

    Hey gmmediadienste!

    Thank you for using the theme!

    Please go to Enfold > Header > Mobile Menu > Header Mobile Menu activation. Choose the second option. I hope that helps.

    Regards,
    Ismael

Viewing 30 posts - 59,311 through 59,340 (of 67,572 total)