Forum Replies Created

Viewing 30 posts - 48,121 through 48,150 (of 67,566 total)
  • Author
    Posts
  • in reply to: Creating a child theme AFTER customization? #472284

    Hey!

    The theme options are saved in the database. You can find it in the wp_options table, it usually called “avia_options_enfold”. If you want to know where the Quick CSS codes resides, you can find it in the enfold.css file located in wp-content > uploads > dynamic_avia folder.

    Cheers!
    Ismael

    in reply to: Header Mailto Problem #472279

    Hi!

    You forgot to close the link tag and there’s something wrong with the quotation marks. I think it’s OK now. Please hard refresh the page.

    Regards,
    Ismael

    in reply to: Video in the lightbox #472271

    Hi!

    I want to login to the site but it’s not loading. Is it up? Please check. Make sure that the Lightbox Modal Window option is enabled in the Theme Options panel.

    Best regards,
    Ismael

    in reply to: Advanced layout builder & Woocommerce #472267

    Hi blaircomm!

    Thank you for using Enfold.

    There is no list of incompatible plugins at the moment but since the advance layout builder is not using the default woocommerce loop for products, most plugins that use action or filter hooks is not going to work when you use the ALB. Use the default editor if you’re planning to install third party woocommerce extensions.

    Best regards,
    Ismael

    in reply to: Expandable Text Block ? #472259

    Hey bibbitybop!

    Thank you for using Enfold.

    You can add something like this in a text block:

    In, cappuccino kopi-luwak frappuccino, strong decaffeinated cup spoon aromatic saucer whipped. Aroma, macchiato, caffeine caramelization crema, strong plunger pot sit americano french press percolator.
    Et coffee, white robusta ut americano trifecta lungo. Grinder, cappuccino, single origin, barista aged grounds barista single shot mocha galão cortado espresso.
    
    <a class="click-learn-more" href="#">Learn more…</a>
    
    <span class="learn-this">MORE AMAZING CONTENT</span>

    Use this in the functions.php file to create a toggle:

    add_action('wp_footer', 'ava_custom_script', 10);
    function ava_custom_script(){
    ?>
    <script>
    (function($) {
    	$('.click-learn-more').on('click', function() {
    		$('.learn-this').toggle();
    	});
    }(jQuery));
    </script>
    <?php
    }
    

    Don’t forget to add this in the Quick CSS field:

    .learn-this { display: none; }
    

    Cheers!
    Ismael

    Hey!


    @Michael
    : You can add this in the Quick CSS field:

    #top .avia-post-nav {
      display: none !important;
    }

    Cheers!
    Ismael

    in reply to: Help! Price showing in size dropdown box. Need it GONE! #472234

    Hey!

    The options are saved inside the product_variations data attribute so there’s no way to remove it without removing the entire form. Yes, please contact the plugin author regarding the issue.

    Cheers!
    Ismael

    in reply to: Menu Item Bug #472232

    Hi eliuserman!

    Thank you for using Enfold.

    I tried to recreate the issue on my installation but the current menu item is being applied even on portfolio items. Did you set the menu as Enfold Main Menu?

    Best regards,
    Ismael

    in reply to: Delay button for 10 seconds #472228

    Hi alex5252!

    Thank you for using Enfold.

    Yes, that’s possible. Try to turn on the custom css class field first. Refer to this link:http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Edit a button element, add a custom css class attribute. Use “custom-button” for example. Add this in the function.php file:

    add_action('wp_footer', 'ava_custom_script', 10);
    function ava_custom_script(){
    ?>
    <script>
    (function($) {
    	$(window).load(function() {
       	 setTimeout(function() {
    		 $('.custom-button').css({'opacity' : 1});
    	 }, 5000);
    	});
    }(jQuery));
    </script>
    <?php
    }

    After that, use this in the Quick CSS field:

    .custom-button {
      opacity: 0;
    }

    The button will show 5 seconds after page load.

    Best regards,
    Ismael

    in reply to: Change Foldername: Enfold #472175

    Hey Bernanke0!

    Thank you for using Enfold.

    Unfortunately, you can’t change the theme name in the style.css file if you already configured the options. If you do, you will have to start from scratch because the theme will not recognize the previous theme options. This is usually the case for most premium themes.

    If you’re trying to change the folder name, change it then reactivate the theme in the Appearance > Themes panel. Or you can use the theme’s import/export panel in order to export the theme settings from the current installation then import it back after. Before doing anything, please create a backup or a restore point just in case.

    Regards,
    Ismael

    in reply to: Change Font Overlay colours on masonry gallery. #472170

    Hey Erich Nolan!

    Thank you for using Enfold.

    You can try this in the Quick CSS field:

    .main_color .av-inner-masonry-content, .main_color .avia-arrow {
      background-color: red;
    }

    Best regards,
    Ismael

    in reply to: How to create a gallery from SWF movies? #472169

    Hi Vital!

    Thank you for using Enfold.

    The example site is using the prettyPhoto lightbox plugin. You can disable the default theme lightbox on Enfold > Theme Options > Lightbox Modal Window option then install the prettyPhoto plugin: https://wordpress.org/plugins/prettyphoto/

    Best regards,
    Ismael

    in reply to: Try out Enfold before purchase #472168

    Hi fanlokbun!

    Thank you for using Enfold.

    Yes, you can test it but make sure to get a regular license for each client or project.

    Best regards,
    Ismael

    in reply to: Mobile responsive not working #472164

    Hi!

    You can adjust the position of the button with this:

    #mc-embedded-subscribe {
      right: 146px !important;
      height: 38px !important;
    }

    Regards,
    Ismael

    in reply to: Filter option below my products on Mobile device #472163

    Hey!

    The problem is, you can’t use the advance layout builder when you set a page as shop base page. However, you can move the sidebar on top of the content. Please refer to this link: https://kriesi.at/support/topic/widget-in-sidebar-disappear-in-responsive/#post-468104

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Font size of the Main Menu #472162

    Hi!

    I checked the home page but I don’t see any post slider there. Where can we find the page with the post slider?

    Best regards,
    Ismael

    in reply to: Different Content | Sidebar Ratio for blog? #472159

    Hi shoo!

    Thank you for using Enfold.

    Yes, it’s possible. You can adjust the content width in the Quick CSS field:

    .container .av-content-small.units {
      width: 73%;
    }

    If you want to use this code for a particular page, you need to get the page id.

    Best regards,
    Ismael

    in reply to: Aligning mobile menu to the left #472156

    Hey!

    Please give us a link to the website. We need to check it. The code above should work. Please try it again then remove browser cache before testing the page.

    Regards,
    Ismael

    in reply to: Remove text from title #472155

    Hi emin!

    Thank you for using Enfold.

    You can add this in the Quick CSS field:

    .breadcrumb-title {
      display: none;
    }

    Best regards,
    Ismael

    in reply to: H1 to show category #472154

    Hey InspireCreations!

    Thank you for using Enfold.

    You can try this in the functions.php file:

    add_filter('avf_title_args', 'avf_portfolio_title_args', 10, 1);
    function avf_portfolio_title_args($args) { 	
    
    	$title = get_the_title($id);
    
    	if(is_singular('portfolio') && is_single()) {
    		$terms = get_the_terms( $id, 'portfolio_entries' );
    	}elseif(is_singular('post')){
    		$terms = get_the_terms( $id, 'category' );
    	}
    	
    	if(is_singular(array('portfolio', 'post')) && is_single()) {
    		$portfoliocat = array();
    		foreach ( $terms as $term ) {
    			$portfoliocat[] = $term->name;
    		}	
    		$args['title']    = $portfoliocat[0];	
    	} else {	
    		$args['title']    = $title;
    	}
    
    	return $args;
    }

    This code will get the first category of the post.

    Cheers!
    Ismael

    in reply to: redirect question #472153

    Hi dominiquehurley!

    Thank you for using Enfold.

    What stats exactly? Did you use a plugin? A screenshot of this will help.

    Regards,
    Ismael

    Hey!

    I don’t think I suggested any of those before. Granting full access to folder or files is not safe so we will not advice it unless necessary. Did you even try it? Actually, hiring someone who is more familiar with server configurations will help in this case.

    Cheers!
    Ismael

    in reply to: Full width submenu as new menu location #472146

    Hey!

    You can try this:

    add_action('avia_breadcrumbs_trail', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	echo do_shortcode("[av_submenu which_menu='custom' menu='41' position='center' color='main_color' sticky='aviaTBsticky' mobile='disabled']
    	[av_submenu_item title='Menu Item 1' link='' linktarget='no' button_style='']
    	[av_submenu_item title='Menu Item 2' link='' linktarget='no' button_style='']
    	[av_submenu_item title='Menu Item 3' link='manually,http://' linktarget='' button_style='']
    	[/av_submenu]");
    }

    Regards,
    Ismael

    in reply to: Events Countdown Widget Bug #472144

    Hi!

    The difference between the events in your installation and the ones in mine is the “recurrence” option which is only available in the pro version of the plugin, I think. We will test this again with the recurrence option enabled. Actually. the next event is there but the opacity is set to 0 and the countdown timer is not working for some reason. If you add this in the Quick CSS field, you’ll see the next event:

    .av-countdown-timer {
      opacity: 1;
    }

    Best regards,
    Ismael

    in reply to: Full width submenu as new menu location #471378

    Hi!

    Please try this in the functions.php file:

    add_action('ava_after_main_title', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	echo do_shortcode("[av_submenu which_menu='custom' menu='41' position='center' color='main_color' sticky='aviaTBsticky' mobile='disabled']
    	[av_submenu_item title='Menu Item 1' link='' linktarget='no' button_style='']
    	[av_submenu_item title='Menu Item 2' link='' linktarget='no' button_style='']
    	[av_submenu_item title='Menu Item 3' link='manually,http://' linktarget='' button_style='']
    	[/av_submenu]");
    }

    Check one of the page or post.

    Regards,
    Ismael

    in reply to: WPML theme options doesn't work #471376

    Hi!

    I changed the socket background to a different color, it’s the container at the very bottom of the site, and it works fine. Please check it here: http://gorkagorospe.com/en/

    Note that you have to switch to english language before you can edit the englist option, you can find the language switcher in the wp admin bar right beside Theme Options. You have to edit each languages’ theme options separately.

    Regards,
    Ismael

    in reply to: Remove image fade-in and resize of gallery thumbnails #471375

    Hey Aljoscha!

    Thank you for using Enfold.

    The image height of image inside the big preview container is based on the width / height ratio of the avia-gallery-big container. It will keep the image ratio and proportion of the big preview images intact. And more importantly, the whole part of the images will be visible inside the big preview container. This is why they are resized that way. You can set the height property to auto but most part of the images, specially big images, will get cut off. Try this in the Quick CSS field, let us know which one you prefer:

    #top div .avia-gallery .avia-gallery-big-no-crop-thumb img {
      height: auto !important;
    }

    Best regards,
    Ismael

    in reply to: blog adaptions #471371

    Hey!

    A: You can apply a top padding to the section to vertically align the content inside it:

    div#av_section_3 .container {
      padding-top: 60px;
    }

    Apply a unique id to the color section then use that selector instead of the generic selector above.

    B: Instead of using the special heading, you can manually code the title using a code or a text block. Apply the link: http://www.w3schools.com/html/html_links.asp

    Best regards,
    Ismael

    in reply to: Single product sidebar #471370

    Hey!

    Alright. Before we start with the modification, I want to know if you remove the code we suggested above. I look for it in the functions.php file but it’s not there. We need to confirm this because if we put the same function, the site will produce an error and we will not be able to edit the file again without FTP access.

    Cheers!
    Ismael

    Hey!

    A lot of forum threads, which seems to be having the same issue, suggested that you have to set the file permission to 775 or 777, basically granting full access to all user groups temporarily. Run the auto update then change the permission back to normal.

    OR

    This is just a wild guess, I’m not really sure if this is really going to help but please give it a try. Try to look for this directory or folder: C:\Windows\temp

    Right click on the folder, click properties then disable the Read Only attribute. Restart the server then try the auto update.

    Let us know if it helps. Aside from that, I don’t think we can provide any more useful information. I’m sorry if we can’t provide a knowledgeable or direct solution. Please contact a server administrator or hire a freelance developer. You can find someone here: http://kriesi.at/contact/customization

    And again, you can still update the theme via FTP.

    Cheers!
    Ismael

Viewing 30 posts - 48,121 through 48,150 (of 67,566 total)