Forum Replies Created

Viewing 30 posts - 57,061 through 57,090 (of 67,479 total)
  • Author
    Posts
  • in reply to: LayerSlider WP strecthing first slide… but not others? #300482

    Hey mxm33!

    Thank you for using Enfold.

    On what browser and OS are you testing this? I can’t seem to see the stretched image on Chrome Windows 8.

    Regards,
    Ismael

    in reply to: After update of theme/WP, header blows up #300481

    Hi!

    Thank you for the update.

    Please remove the child theme’s header.php file. All modifications regarding the menu, logo, social icons etc should be done on the includes > header-main-menu.php file.

    Regards,
    Ismael

    in reply to: Main page problem… #300480

    Hi erkuto!

    Thank you for using Enfold.

    Maybe a browser or server cache. Try testing it on another browser. Regarding the shortcode, try adding it on the Visual mode of the text block editor. Note that we don’t provide support for third party plugins as stated on our support policy. Any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author.

    Best regards,
    Ismael

    in reply to: Enfold WP Theme: Dummy data import continues to fail #300479

    Hi lindenaulegal!

    Thank you for visiting Kriesi’s support forum and we’re sorry that you’re having this issue.

    If you don’t mind, we would like to access the website. Please post the login details here and set it as a private reply. Also, if possible, try to install wordpress using Fantastico, Softaculous or autoinstallers software available on your cpanel. Generate the database automatically.

    Best regards,
    Ismael

    in reply to: Adding 2 logos to the menu bar #300477

    Hey McEwans!

    Thank you for using Enfold.

    Please use this on functions.php:

    add_filter('avf_logo_subtext', 'avf_add_logo');
    function avf_add_logo($sub)
    {
    	$logo2 = "<img src='IMAGE URI HERE' />";
    	$sub = "<strong class='logo-2'>{$logo2}</strong>";
    	return $sub;
    }

    Add the second logo on the $logo2 then add this on Quick CSS or custom.css to adjust the position of the second logo:

    strong.logo.bg-logo {
    width: 100%;
    }
    
    span.subtext {
    position: absolute;
    top: 10px;
    right: 0;
    }

    Cheers!
    Ismael

    in reply to: Title text rather than logo #300475

    Hi Richard!

    Thank you for using Enfold.

    Please use this on functions.php:

    add_filter('avf_logo_final_output', 'avf_text_logo_final_output');
    
    function avf_text_logo_final_output($logo) {
    	$link 	  = apply_filters('avf_logo_link', home_url('/'));
    	$logotext = "THIS IS MY LOGO";
    	$subtext  = "THIS IS THE SUBTEXT";
    	$subtext  = "<span class='subtext'>$subtext</span>";
        $logo     = "<h1 class='logo bg-logo'><a href='".$link."'>".$logotext."$subtext</a></h1>";
    	 
    	return $logo;
    }

    Change the subtext and the logotext.

    Regards,
    Ismael

    in reply to: Custom Header for blog page and posts #300048

    Hey Jagrav!

    Thank you for using the theme.

    Are you referring to the tagline part? Please use this on functions.php:

    add_action('ava_main_header', 'ava_add');
    
    function ava_add() {
    	echo "<div class='tagline'>TAGLINE: HERE</div>";
    }

    Adjust the position of the tagline container with this:

    div#header_main .tagline {
    position: absolute;
    right: 60%;
    top: 30px;
    }

    Regards,
    Ismael

    Hi LenfertDesign!

    Thank you for using Enfold.

    Please use this on the child theme’s functions.php to decrease the width of the sidebar:

    function avia_decrease_sidebar_size() {
    	global $avia_config;
    	
    	$avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    	$avia_config['layout']['sidebar_left'] 	= array('content' => 'ten', 		 'sidebar' => 'two alpha' ,'meta' => 'one alpha', 'entry' => 'nine');
    	$avia_config['layout']['sidebar_right'] = array('content' => 'ten alpha',   'sidebar' => 'two alpha', 'meta' => 'one alpha', 'entry' => 'nine alpha');
    }
    add_action( 'init', 'avia_decrease_sidebar_size', 1);

    Best regards,
    Ismael

    in reply to: Thumbnail in post remain 80 px #300044

    Hey!

    Thank you for the info.

    Please try to upload images with the same ratio or dimension as much as possible. Use this on Quick CSS to fix the gallery columns but it will stretch some of the images:

    #top .gallery .gallery-item {
    margin: 1px 1px 0 0;
    width: 80px !important;
    height: 80px !important;
    padding: 0;
    }
    
    #top .gallery .gallery-item img {
    height: 100% !important;
    width: 100% !important;
    }

    2.) Yes, it is possible. :)

    Cheers!
    Ismael

    in reply to: Easy Slider issues – Not as easy as the name states. #300042

    Hi mcraig77!

    Thank you for using the theme.

    Since the size of the easy slider is full width, you should use larger images. Minimum width should be 1030px. Some of your images are only 355px in width, that is why they are pixelated.

    Regards,
    Ismael

    in reply to: Enfold Theme #300041

    Hey!

    Thank you for the info.

    It sounds like you might be having an issue with a third party plugin or script. Regretfully, we cannot provide support for third party plugins oscripts, in this case “Arforms”, as stated on our support policy due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding security, setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author.

    Best regards,
    Ismael

    in reply to: Another Breadcrumb Issue #300029

    Hi Slade!

    Thank you for visiting Kriesi’s support forum.

    You should set the “students” page as the parent of the “life at LISC” page.

    Cheers!
    Ismael

    in reply to: Fullscreen slider disable pause/play #300027

    Hey Alex!

    Thank you for using Enfold.

    You should NOT disable the autoplay option of the video then edit js > shortcodes.js, find this code on line 3277:

    pp.attach();
    		return pp;

    Replace it with:

    pp.attach();
    		//return pp;

    Remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: Need some help with header #300020

    Hi!

    Thank you for the screenshot.

    Add this at the very bottom:

    @media only screen and (max-width: 767px) {
    .my-custom-text {
    position: relative;
    top: 8px;
    margin: 0 auto;
    }
    
    #header_meta {
    min-height: 60px;
    }
    }

    Cheers!
    Ismael

    in reply to: plugin conflict with LayerSlider #300017

    Hey!

    Thank you for the info.

    We already asked Kriesi to update layer slider to 5.1.2. The update should be included on the latest patch of the theme.

    Cheers!
    Ismael

    in reply to: Selection Categories #300016

    Hey fundance!

    Thank you for using Enfold.

    I’m sorry but the website is not loading properly when I checked it. I’ll ask the rest of the support team to take a look. If you want to enable the sidebar for iPhones, go to Enfold > Sidebar Layout. Enable the Sidebar on Smartphones setting.

    Best regards,
    Ismael

    in reply to: Permalink issues… #300014

    Hi!

    Thank you for using the theme.

    I enabled the Portfolio Items on Appearance > Menus. Please remove the menu items Portfolio menu section then add the items again under Portfolio Items. The problem is you’re using a custom link so when you update the permalink to %postname%, it doesn’t recognize the portfolio menu items anymore.

    Best regards,
    Ismael

    Hi PaintedMidget!

    Thank you for using Enfold.

    The top arrow and shrinking headers works when I checked the website. Please try to remove browser cache then reload the page a few times.

    Regards,
    Ismael

    in reply to: Slider bottom border #300012

    Hey!

    Thank you for the info.

    I edited the BG layer. Please check. http://www.betterboilers.co.uk/

    Best regards,
    Ismael

    in reply to: Post not appearing on front page #299991

    Hi!

    Glad you found a solution. If you still have questions, let us know.

    Regards,
    Ismael

    in reply to: Wrong position of the parallax image #299976

    Hey!

    Thank you for using the theme.

    It does happen when you increase the size of the browser. I doubt users will decrease the browser size then increase it back intentionally when viewing the website.

    Cheers!
    Ismael

    in reply to: Alignment, Translation and wrong menue in sidebar #299970

    Hi!

    Thank you for the info.

    Try to add this on Quick CSS to adjust the table:

    div table.shop_table td {
    padding: 6px 7px;
    }
    
    #top .my_account_orders a.button {
    padding: 7px 5px;
    }

    Regards,
    Ismael

    in reply to: Blog mit Layout Editor? #299952

    Hey rfarthofer!

    Thank you for visiting Kriesi’s support forum!

    In case you have any questions, please 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 explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    You can add a Blog by placing the Blog Posts element on a page using the Advance Layout Builder. You can also set the blog page on Enfold > Theme Options > Where do you want to display blog? setting. If you have the time, try to import the dummy data. It will give you some ideas how the theme works.

    Regards,
    Ismael

    in reply to: Make centered logo a tad bigger and centered #299950

    Hi mcraig77!

    Thank you for using the theme.

    Please go to Enfold > Header Layout > Header layout panel. Look for the Header Size settings then select custom pixel value. Adjust the height of the header. This will automatically increase the width of the logo.

    Regards,
    Ismael

    in reply to: Show wordpress avatar in comments threads #299949

    Hi Transformers Universe!

    Thank you for using Enfold.

    Yes, that is possible. Please go to Settings > Discussions then look for the Avatar Display option. Enable the Show Avatar setting. It should be enabled by default. E-mails should be registered on http://en.gravatar.com/.

    Regards,
    Ismael

    in reply to: some error #299948

    Hi oravidor!

    Thank you for using Enfold.

    Do you mind if we take a look at the actual website? Try to deactivate all plugins except woocommerce then test the page again.

    Best regards,
    Ismael

    in reply to: Need some help with header #299946

    Hi!

    Thank you for the screenshot.

    You can add this:

    .my-custom-text {
    position: absolute;
    top: 5px;
    right: 0;
    }

    Best regards,
    Ismael

    in reply to: Comment form shows on posts but not on PAGES?!?! #299500

    Hey ChristinaVOS!

    Thank you for using the theme.

    Are you using the advance layout builder to create the page? Insert the Comment element under Content elements panel.

    Best regards,
    Ismael

    in reply to: Large Testimonial, Center Align Icons #299499

    Hi courtney_martin!

    Thank you for using Enfold.

    I’m sorry but which icons and what section of the page? A screenshot will help.

    Best regards,
    Ismael

    in reply to: WooCommerce #299496

    Hey JulieDesigns2!

    Thank you for using Enfold.

    Unfortunately, woocommerce doesn’t recognize portfolio items as products so you need to create Products for each paintings or art work. This will then be displayed on the shop page.

    Best regards,
    Ismael

Viewing 30 posts - 57,061 through 57,090 (of 67,479 total)