Forum Replies Created

Viewing 30 posts - 48,571 through 48,600 (of 66,065 total)
  • Author
    Posts
  • in reply to: set vertical Logo align to center #431795

    Hey Tobias!

    Thank you for using Enfold.

    We need to see actual website in order to inspect it. Try to adjust the logo’s vertical position with this in the Quick CSS field:

    strong.logo.bg-logo {
      top: 20px;
    }

    Best regards,
    Ismael

    in reply to: Mobile / Responsive menu won't scroll on iphone 6+ #431782

    Hey!

    @Richard: Thanks for sharing.:)

    Best regards,
    Ismael

    in reply to: Adding code above category posts & posts #431780

    Hey!

    If you want the custom code to appear on the category and single pages, edit archives.php and single.php file. Place it above the loop:

    get_template_part( 'includes/loop', 'index' );
    

    Cheers!
    Ismael

    in reply to: Logo Problems #431779

    Hi!

    We asked you to provide a screenshot of how you want the logo to look inside the header but we didn’t get any. We really don’t know what’s wrong with it because it looks totally fine when I checked the page. If you want to add a padding around the logo, use this:

    strong.logo {
      padding: 10px;
    }

    The media library works ok on our installation so it’s either a third party plugin or one of the custom modifications is causing the issue. Please try to deactivate all plugins, remove browser cache then test it again.

    Regards,
    Ismael

    in reply to: Search form #431778

    Hey!

    You can use the poedit software or this plugin to translate the “search” string: https://wordpress.org/plugins/codestyling-localization/

    If you want to edit the text manually, edit searchform.php. Look for this code:

    'placeholder'  	=> __('Search','avia_framework')
    

    Replace it with:

    'placeholder'  	=> 'Search'
    

    Best regards,
    Ismael

    Hi!

    WP Migrate DB should handle the url switch but yes, I think the plugin will work. I haven’t tested it personally though. Since you paid for the transfer and they didn’t do it properly, I think you have the right to ask them to use the plugin that they suggested to adjust the url. You can actually do this in the database manually but you can try the plugin first.

    Best regards,
    Ismael

    in reply to: Create Pages Submenu in Header #431774

    Hi!

    Oh. Okay. I thought you want the default nested page navigation in the breadcrumb bar. Anyway, that kind of menu isn’t available by default. You can try the ubermenu plugin. Or use the Fullwidth Submenu Element but you will have to add it on every child pages.

    Cheers!
    Ismael

    in reply to: Customise Excerpt for Blog #431773

    Hey!

    They are hidden by default on mobile because the space isn’t enough to contain both the image and the post content. You can add this in the Quick CSS field:

    @media only screen and (max-width: 767px)
    .template-blog .blog-meta {
      float: left;
      margin-right: 20px;
      width: 20%;
    }}

    Cheers!
    Ismael

    in reply to: Image cropping / scaling on thumbnails / featured images #431770

    Hey!

    My bad. Please replace the code with this:

    add_action('init', 'ava_my_image_size', 1);
    function ava_my_image_size()
    { 
    global $avia_config;
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185, array('top', 'center'));
    }

    Cheers!
    Ismael

    in reply to: Disqus plugin removes page background #431768

    Hey!

    I can see the issue, however, we don’t provide support for third party plugins. Please contact the plugin author. Anyway, you can try this in the functions.php file:

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	$(window).on("resize", function (event) {
    		if (event.originalEvent === undefined) {
    			var alien = 'alien';
    			console.log(alien);
    		} else {
    			var human = 'human';
    			console.log(human);
    		}
    	}).resize();
    })(jQuery);
    </script>
    <?php
    }

    The issue fix itself when you resize the browser so, maybe, the code above will help.

    Regards,
    Ismael

    in reply to: Pricing table HTML links #431758

    Hey!

    I replaced it with the full url and it works fine. **removed upon request**

    Please post a step by step instruction in order to reproduce the issue. If possible, please create a test page.

    Cheers!
    Ismael

    • This reply was modified 10 years, 2 months ago by Yigit.
    in reply to: Advanced Layer slider z-index #431757

    Hey!

    It looks horizontally aligned on smaller screens. Add this in the Quick CSS field:

    #wrap_all {
      position: relative;
    }

    Please update the theme to the latest version, 3.1.3.

    Best regards,
    Ismael

    in reply to: The Magnific Popup doesn't work with Buttons #431755

    Hey prohronus!

    Thank you for using Enfold.

    Add this in the functions.php file:

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script>
    (function($){
        $('.inline_popup a').addClass('inline_popup');
    })(jQuery);
    </script>
    <?php
    }

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Updating Theme & Editing Pages #431754

    Hey!

    1.) Go to the Pages panel then delete the page “Bestellung anzeigen”. It’s no longer needed because of the endpoints.

    2.) Use this in the Quick CSS field to change the font size of the price text:

    #top .price, #top .price span, #top del, #top ins {
      font-size: 20px;
    }

    This one is for the cart item price:

    #top .cart_list .quantity span.amount {
      font-size: 20px;
    }

    Adjust the value as you like. Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Blog pagination #431388

    Hi kellymarie2001!

    Thank you for using Enfold.

    This will require custom modifications on the theme. Try to edit includes > loop-index.php, look for this code:

    if(empty($avia_config['remove_pagination'] ))
    	{
    		echo "<div class='{$blog_style}'>".avia_pagination('', 'nav')."</div>";
    	}

    Replace it with:

    echo "<div class='custom-pagination'>";
    	global $wp_query;
    	$page = $wp_query->max_num_pages;
    
    	$args = array(
    	'format'             => 'page/%#%',
    	'total'              => $page,
    	'type'               => 'plain',
    	);
    	
    	echo paginate_links( $args );
    	echo "</div>";

    I’m not sure if this is going to work properly on archive pages. Refer to this link for more info: https://codex.wordpress.org/Function_Reference/paginate_links

    Regards,
    Ismael

    in reply to: Change text from reply icon #431351

    Hey Marcel!

    Thank you for using Enfold.

    You can edit comment.php file then look for this line:

    $rep	= __( 'replies', 'avia_framework' );
    

    Or use the codestyling localization plugin to translate or change the string.

    Regards,
    Ismael

    in reply to: Safari Compatibility #431347

    Hi!

    It looks fine on Safari Windows 8 and 7. Anyway, please try this in the Quick CSS field:

    span.copyright {
      -moz-font-smoothing: antialiased;
      -webkit-font-smoothing: antialiased;
      font-smoothing: antialiased;  
    }

    Cheers!
    Ismael

    in reply to: Broken Dependencies – js #431343

    Hi!

    Are you having any issues with the advance layout builder? Maybe those warning are just false positives. If the advance layout builder is not working, specifically the tab, toggles and table elements, let us know.

    Regards,
    Ismael

    in reply to: Avia script and styles missing in back end! #431323

    Hi!

    Those scripts are use in the media, tab, toggle and table editor. Please check those elements. Let us know if they’re not working properly.

    Best regards,
    Ismael

    in reply to: Woocommerce sidebar on productpage #431315

    Hi!

    Replace this line of code in the functions.php file:

    function avia_change_post_layout($layout, $post_id){
        global $woocommerce;
        if(is_product()) $layout['current']['main'] = "sidebar_right";   
        return $layout;
    }

    with this:

    function avia_change_post_layout($layout, $post_id){
        global $woocommerce;
        if(is_product()) $layout['current']['main'] = "sidebar_left";   
        return $layout;
    }

    Regards,
    Ismael

    in reply to: BBpress is not showing as it should #431314

    Hi JerrelZ!

    Thank you for using Enfold.

    That is the theme’s default forum layout. We chose to remove clutters like freshness, notices etc but you can still display it via css if you want. Please post the website url here.

    Best regards,
    Ismael

    in reply to: Header animation #431310

    Hey!

    Glad we could help. :)

    Regards,
    Ismael

    in reply to: YouTube video screen showing up huge in posts #431293

    Hey!

    Thank you for your understanding. We know that rebuilding a site from a theme takes a lot of time specially when you’re not familiar with the whole process. You can still post inquiries and we will gladly help you out.

    Regarding the issue, you have to replace the youtube link with the video element or place the youtube link inside a column layout (1/2 or 2/3).

    Best regards,
    Ismael

    in reply to: WooCommerce Single Product Page #431088

    Hey Kameel!

    Thank you for using Enfold.

    You can find all woocommerce or product modifications in the config-woocommerce > config.php file.

    Best regards,
    Ismael

    in reply to: editing "html.responsive" tag for a specific page #431087

    Hi mocablue!

    Thank you for using Enfold.

    Please create a test page so that we can check the issue. You need to apply the overflow property in the popup container.

    Regards,
    Ismael

    in reply to: Problemas con masonry en el blog #431086

    Hi!

    Please post the login details here and set it as a private reply so that all moderators can see it. If you have the time, please translate the inquiry to english.

    Regards,
    Ismael

    in reply to: A page organiser #431081

    Hi!

    I’m not sure if it is possible or I’m not sure if I understand you clearly. Did you see any example of this somewhere? I’ll ask the rest of the support team to check.

    Cheers!
    Ismael

    in reply to: In page links not working #431073

    Hi!

    Replace the fullwidth easy slider with a color section. Move the anchor name “catering” as Section ID of the color section. Apply the image as background.

    Best regards,
    Ismael

    in reply to: How to change menu border? #431069

    Hi gharding!

    Thank you for using Enfold.

    You can try this:

    div#header_main_alternate {
      background-color: #fff;
      background-image: url("/graphics/menu-border.jpg");
      background-position: center bottom;
      background-repeat: repeat-x;
    }

    You need to get the the menu-border.jpg file.

    Regards,
    Ismael

    in reply to: YouTube video screen showing up huge in posts #431063

    Hi dominiquehurley!

    Thank you for using Enfold.

    You need to recreate the video using the video element.

    We are more than happy to help you rebuild the site but I noticed that you have created more than 40 inquiries in less than a week. That is 1000% more inquiries per week than our average users here. I’m sorry but it looks like you need someone, other than us, to help you rebuild the site. Please hire a freelance developer or contact codeable to help you with it: http://kriesi.at/contact/customization

    Cheers!
    Ismael

Viewing 30 posts - 48,571 through 48,600 (of 66,065 total)