Viewing 30 results - 218,971 through 219,000 (of 243,602 total)
  • Author
    Search Results
  • #276451

    In reply to: Bug report Blog

    Using Enfold 2.7.1

    This reply has been marked as private.
    Sjaak
    Participant

    Hi,
    I upgraded to WP 3.9.1 and Enfold 2.8.1 last week. The website itself runs fine, but the Advanced Layout editor is not loading a page when the WPML Multilingual CMS plugin (3.1.4) is active, which is the latest available version. Any solutions for this? Thanks.

    Good Afternoon,
    Thanks for great Tech support.

    This is a 2 part question. As per prior support answer:
    ———————
    https://kriesi.at/support/topic/change-layout-prettyphoto/#post-173889
    Enfold\js\prettyPhoto\js folder and open jquery.prettyPhoto.js file. Search “theme” and find http://i.imgur.com/VKAoooU.jpg
    and change “pp_default” with “dark_square”.
    Regards,
    Yigit
    ————-

    Is there a way to edit or call a replacement jquery.prettyPhoto.js file in a child theme such as the child theme attached?

    Also I just downloaded this child theme and it has a lot of existing function calls?

    The child theme I currently run was from last year and came with a blank function file which was used for styling only. I have added few simple functions but nothing referencing similar functions to this sample.

    Is this updated child theme a better version to work from (just without the dequeue / register scripts related to the question above for fancybox?

    Warm regards

    Paul

    #276431
    wirralweb
    Participant

    Hi,

    I have tried to add a child theme by renaming the style.css and renaming the folder of the child – and when I view the source code it does have the correct path to the child theme – but also lists the parent theme several times, including this comment in the source code :-

    <!–
    Debugging Info for Theme support:

    Theme: Enfold
    Version: 2.8.1
    Installed: enfold
    AviaFramework Version: 1.9.1
    AviaBuilder Version: 0.7
    – – – – – – – – – – –
    ChildTheme: AnthonySomers
    ChildTheme Version: 1.0
    ChildTheme Installed: enfold

    ML:256-PU:28-PLA:3
    –>

    Just wondered how I can disguise the name of the parent so that people can’t replicate my website with ease?

    I have read and followed some previous threads on this but – there is still mention of Enfold in the source code plus the above remark

    Thanks

    • This topic was modified 11 years, 5 months ago by wirralweb.

    Hi Adenadoume!

    Yes, open up wp-content/themes/enfold/includes/helper-post-format.php and replace:

    
    	function avia_image_slideshow_filter($current_post)
    	{
    
    		$prepend_image = get_the_post_thumbnail(get_the_ID(), 'large');
    		$image = "";
    
    		if(!$prepend_image)
    		{
    			$image		= avia_regex($current_post['content'],'image');
    			if(is_array($image))
    			{
    				$image = $image[0];
    				$prepend_image = '<div class="avia-post-format-image"><img src="'.$image.'" alt="" title ="" /></div>';
    			}
    			else
    			{
    				$image		= avia_regex($current_post['content'],'<img />',"");
    				if(is_array($image))
    				{
    					$prepend_image = '<div class="avia-post-format-image">'.$image[0]."</div>";
    				}
    			}
    		}
    		else
    		{
    			$prepend_image = '<div class="avia-post-format-image">'.$prepend_image."</div>";
    		}
    
    			if(!empty($prepend_image) && is_string($prepend_image))
    			{
    				if($image) $current_post['content'] = str_replace($image, "", $current_post['content']);
    				$current_post['before_content'] = $prepend_image;
    				$current_post['slider']  = "";
    			}
    
    		return avia_default_title_filter($current_post);
    	}
    

    with

    
    	function avia_image_slideshow_filter($current_post)
    	{
    
    		$prepend_image = get_the_post_thumbnail(get_the_ID(), 'large');
            if($prepend_image)
            {
                $thumb_id = get_post_thumbnail_id();
                $thumb_url = wp_get_attachment_image_src($thumb_id,'full', false);
            }
    
    		$image = "";
    
    		if(!$prepend_image)
    		{
    			$image		= avia_regex($current_post['content'],'image');
    			if(is_array($image))
    			{
    				$image = $image[0];
    				$prepend_image = '<div class="avia-post-format-image"><a href="'.$image.'" class="lightbox"><img src="'.$image.'" alt="" title ="" /></a></div>';
    			}
    			else
    			{
    				$image		= avia_regex($current_post['content'],'<img />',"");
    				if(is_array($image))
    				{
    					$prepend_image = '<div class="avia-post-format-image"><a href="'.$image[0].'" class="lightbox">'.$image[0]."</a></div>";
    				}
    			}
    		}
    		else
    		{
    			$prepend_image = '<div class="avia-post-format-image"><a href="'.$thumb_url[0].'" class="lightbox">'.$prepend_image."</a></div>";
    		}
    
    			if(!empty($prepend_image) && is_string($prepend_image))
    			{
    				if($image) $current_post['content'] = str_replace($image, "", $current_post['content']);
    				$current_post['before_content'] = $prepend_image;
    				$current_post['slider']  = "";
    			}
    
    		return avia_default_title_filter($current_post);
    	}
    

    You can also insert the modified function into your child theme functions.php file.

    2) I tested the option on my test server and it works just fine. Make sure that wp-content/themes/enfold/includes/loop-index.php is up to date and contains this code:

    
    if(is_single($initial_id) && get_post_meta( $current_post['the_id'], '_avia_hide_featured_image', true ) ) $current_post['slider'] = "";
    

    If not replace:

    
    $current_post['slider']  	= get_the_post_thumbnail($current_post['the_id'], $size);
    

    with

    
    $current_post['slider']  	= get_the_post_thumbnail($current_post['the_id'], $size);
    if(is_single($initial_id) && get_post_meta( $current_post['the_id'], '_avia_hide_featured_image', true ) ) $current_post['slider'] = "";
    

    Cheers!
    Peter

    #276413

    Hi!

    Thank you for the bug report. We’ll fix it with the next update. If you need a quick fix open up enfold/functions.php and replace:

    
    
    /*
     * Activate native wordpress navigation menu and register a menu location
     */
    if(!function_exists('avia_nav_menus'))
    {
    	function avia_nav_menus()
    	{
    		global $avia_config;
    
    		add_theme_support('nav_menus');
    		foreach($avia_config['nav_menus'] as $key => $value){ register_nav_menu($key, THEMENAME.' '.$value); }
    	}
    
    	$avia_config['nav_menus'] = array(	'avia' => 'Main Menu' ,
    										'avia2' => 'Secondary Menu <br/><small>(Will be displayed if you selected a header layout that supports a submenu <a target="_blank" href="'.admin_url('?page=avia#goto_header_layout').'">here</a>)</small>',
    										'avia3' => 'Footer Menu <br/><small>(no dropdowns)</small>'
    									);
    	avia_nav_menus(); //call the function immediatly to activate
    }
    

    with

    
    /*
     * Activate native wordpress navigation menu and register a menu location
     */
    if(!function_exists('avia_nav_menus'))
    {
    	function avia_nav_menus()
    	{
    		global $avia_config, $wp_customize;
    
    		add_theme_support('nav_menus');
    		
    		foreach($avia_config['nav_menus'] as $key => $value)
    		{
    			//wp-admin\customize.php does not support html code in the menu description - thus we need to strip it
    			$name = (!empty($value['plain']) && !empty($wp_customize)) ? $value['plain'] : $value['html'];
    			register_nav_menu($key, THEMENAME.' '.$name);
    		}
    	}
    
    	$avia_config['nav_menus'] = array(	'avia' => array('html' => __('Main Menu', 'avia_framework')),
    										'avia2' => array(
    													'html' => __('Secondary Menu <br/><small>(Will be displayed if you selected a header layout that supports a submenu <a target="_blank" href="'.admin_url('?page=avia#goto_header_layout').'">here</a>)</small>', 'avia_framework'),
    													'plain' => __('Secondary Menu - will be displayed if you selected a header layout that supports a submenu', 'avia_framework')),
    										'avia3' => array(
    													'html' => __('Footer Menu <br/><small>(no dropdowns)</small>', 'avia_framework'),
    													'plain' => __('Secondary Menu (no dropdowns)', 'avia_framework'))
    									);
    
    	avia_nav_menus(); //call the function immediatly to activate
    }
    
    

    Cheers!
    Peter

    #276412

    Thanks for the support so far. I tried different Computers and different enfold installs.

    Firefox:
    The audio player is not added as a short code but as html with styles. An Error comes up and non of the page builder elements can be updated/edited anymore. I can make changes sometimes but only in the text editor, but not add any images in text fields.
    http://mara-events.de/cms/test-firefox/

    TypeError: this.$node.css(…) is undefined
    “string”?window[c.options.success](c.media,c.domNode,c):c.options.success(c.media,c.domNode,c)}},handleError:function(a){this.controls.hide();this.options.error&&this.options.error(a)},setPlayerSize:function(a,b){if(typeof a!=”undefined”)this.width=a;if(typeof b!=”undefined”)this.height=b;if(this.height.toString().indexOf(“%”)>0||this.$node.css(“max-width”)===”100%”||parseInt(this.$node.css(“max-width”).replace(/px/,””),10)/this.$node.offsetParent().width()===1||this.$node[0].currentStyle&&this.$node[0].currentStyle.maxWidth===

    IE:
    The audio player is added as short code in IE. But after it is added I cannot make any changes to the other elements. Cannot edit the text, cannot delete text or add images to it.

    Error: SCRIPT438: Das Objekt unterstützt die Eigenschaft oder Methode “remove” nicht (remove is not supported)
    Datei: load-scripts.php, Zeile: 641, Spalte: 1866
    http://mara-events.de/cms/wp-content/uploads/IE_error.jpg

    Another error here: When I click on one page builder element to edit it, another one is opened in the modal. Its all mixed up.

    I also get the following access denied errors:
    SCRIPT7002: XMLHttpRequest: Network Error 0x2ef3, Could not complete the operation due to error 00002ef3
    File: post.php
    SCRIPT70: access denied
    File: load-scripts.php, Zeile: 3, Spalte: 20663
    SCRIPT70: access denied
    File: load-scripts.php, Zeile: 3, Spalte: 20663
    –> found that this is not a new problem! https://kriesi.at/support/topic/dropdowns-for-variable-products-not-working-in-ie/

    I have no idea anymore what could be wrong. I prefere to use firefox where the problems start when adding the audio player :-/

    Gabriel

    #276401
    zviz
    Participant

    I just finished 3 sites using Enfold.
    the first one works just fine on IE11 = (site 1 on private msg)
    the second site (site 2 on private msg) does not show any of the texts included in IE11. not in posts, pages, avia-builder texts are just gone.
    (same problem on third site)
    i tried to see if it’s a local problem but it was replicated on 3 different machines.
    needless to say it works just fine on chrome, firefox and safari.

    fyi – all 3 sites are on different servers.

    Help me please, i’m kind of freaking out. i’ve been promoting Enfold to my clients as the best choice around, and i’m in a bit of a pickle.

    Thanks
    Zvi

    • This topic was modified 11 years, 5 months ago by zviz.
    #276397

    Hi Antonio!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (min-width: 1140px) {
    .responsive .container {
    width: 990px;
    }}

    Best regards,
    Yigit

    Mudfish488
    Participant

    Hi guys,

    Apologies for sending a post on a topic that appears to be asked quite often. I’ve read many of the previous posts and corresponding answers, but haven’t quite been able to get it working the way I want.

    I’m trying to figure out the relationship between the product image size settings in WooCommerce/Settings/Products, the Enfold image size settings in the config.php (config-woocommerce/config.php) and editing the container wrapper topic I’ve read about on here as well.

    This is my understanding, but please feel free to confirm or correct me if I’m wrong.
    WooCommerce/Settings/Products – the image sizes in here control the resolution of the image displayed. Therefore if I set the catalog image size here to 240×360, that is the resolution of the thumbnail it creates from my original image. However, this doesn’t control the way that thumbnail image is displayed.

    config-woocommerce/config.php – this image setting controls the size of the image as it is displayed. So if using my example above, if I set the catalog image to 300 x 450, the image would be fuzzy as it’s enlarging a 240×360 image to fit 300 x 450 right? But if I set it to 240×360, in theory the image should look sharp and clear correct?

    Here’s where my issue comes in. I’ve tried changing both the woocommerce settings and the woocommerce config.php settings to a size smaller than what the default was, but the image is still showing up larger than I want. I’m guessing this is due to the container wrapper used in the product grid correct? If so, how would I change this to be smaller? I saw a post or two on the container wrapper already but it seemed way above my abilities so if you have a more visual example or simple instructions, that would be great!

    I did try switching from 3 columns to 4 columns and that helped, but not quite down to the size I want. Also, I would prefer to have 3 columns and just more space between them or keep the extra space on the right. Here are the sizes/format I’m hoping for.

    Grid: 3 columns wide
    Product catalog images: 240×360
    Single product image: 300×450

    Can you help me achieve this? Thanks so much!!!

    Bobby

    Bonus question: How can I get rid of the search results in the catalog grid? Right now, it shows “No products found which match your selection.” and then displays my products. Thx!!

    #276364

    Besten Dank.

    Musste zwar den Translator bemühen, da mein Englisch nicht wirklich gut ist, aber es hat soweit geklappt.

    Eine Sache ist mir allerdings noch etwas suspekt:
    Du schreibst, es liege an der Version und dass die Enfold Version 2.8.1 die aktuellste ist. Aber wieso kann ich diese dann nicht updaten?
    API-Code etc. ist eingegeben und wurde auch aktualisiert/akzeptiert.

    Bei mir steht folgendes:
    http://prntscr.com/3r1l1j
    http://prntscr.com/3r1kz6

    Wordpress selbst ist auf dem aktuellsten Stand (3.9.1)

    Bitte um entsprechendes Feedback. Danke

    #276362
    #276359

    same problem here, any solution ?
    enfold last version 2.8.1

    #276355
    This reply has been marked as private.
    #276352

    In reply to: Problem With Images

    Hi!

    Glad it is working now. :)

    Let us know if you still experience the issue in the fuure. 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. :)

    Best regards,
    Ismael

    #276351

    Hi MaddGIJoe!

    Thank you for using the theme!

    We would like to see the actual website. Please post it here. Make sure that you’re running Enfold 2.8.1 and the latest version of WordPress.

    Cheers!
    Ismael

    #276350

    In reply to: Center Logo on iPad

    Hi!

    Thank you for the update.

    Please avoid creating duplicated posts. If I am not mistaken, this issue is the same with the thread you have here: https://kriesi.at/support/topic/ipad-formatting-issue/

    Anyway, regarding the mobile menu, please go to Enfold > Mobile Menu > Header Mobile Menu activation. Choose the second option. After that, pease add this on Quick CSS or custom.css to center align the logo on iPad portrait view:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .mobile_slide_out .logo {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    }
    
    #advanced_menu_toggle {
    right: 0;
    top: 40%;
    }
    }

    Remove this line on our first suggestion:

    .responsive .mobile_slide_out .logo {
    left: 40%;
    }

    Cheers!
    Ismael

    #276349

    Hey!


    @coinmaster
    : Looks like the OP hasn’t updated the theme yet but we really recommend that you keep the theme up to date even if you’re not having this issues. Please download the latest version 2.8.1 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/

    Regards,
    Ismael

    #276348

    In reply to: Enfold Showcase

    Hi!


    @Frank
    : Like the floors depicted on the picture, the website is clean and shiny. Good job! :)


    @mrshaffly
    : I think the business is going well. Nice websites. Thank you for using Enfold!


    @ianstudio
    : The custom social icon section on top looks awesome. Great work.

    Best regards,
    Ismael

    #276343

    Hey Omer!

    Thank you for using the theme!

    On Enfold 2.8.1, the send button should show a color transition or animation while sending the form. 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/

    Best regards,
    Ismael

    #276342

    Hi!

    @Giuseppe: Thanks again for the translation! I tried to download the zip file here http://www.giuseppebeghelli.it/portfolio/demo/Enfold-v-2.-8.-1-it_IT.zip/ but it’s not working. Mind uploading the file again? :)

    Cheers!
    Ismael

    #276337

    Hi Dave!

    Thank you for the info.

    Maybe the enfold.css file is stuck and needs to be regenerated again by toggling any settings and saving the changes on the theme options. Make sure that the dynamic_avia inside the wp-content/uploads folder got the right file permission.

    Regards,
    Ismael

    jasrobb
    Participant

    Hello There – I prefer to buy images from image selling websites instead of hiring graphic designer to design it, am planning to buy couple of images which i’ll be using at Enfold’s homepage slider, but being a non-tech one, am not sure which size should i go for, may you be kind enough to help me out.

    #276331

    Hey Fitzpatrick512, did this solve the problem for you? I have the same issue, and it would be great to know if updating Enfold and/or Woocommerce worked for you!

    Thanks,
    Mark

    #276328

    In reply to: Gallery Edit Issues

    Hi!

    Thank you for the update.

    I created a test page with the masonry gallery and I can still update or edit the gallery set when I edit the element. Just to test, I added a new full width masonry gallery on the link that you provided and it works fine. Check it here:

    http://www.stbarth.villas/wp-admin/post.php?post=3271&action=edit&message=6
    http://www.stbarth.villas/wp-admin/post.php?post=734&action=edit&message=1

    Please download the latest version 2.8.1 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/

    Regards,
    Ismael

    #276325

    In reply to: Problem With Images

    Never mind. I went to make a video of the issue and now it’s working!

    I did change some setting in Enfold and maybe they made a difference. I have no idea.

    Thanks for your time and sorry for this. If I see the problem again I will be back.

    I could not insert an image at all using the Default Editor for several hours but now I can.

    I did start and stop Chrome, maybe that had something to do with it.

    Thanks again

    #276319

    In reply to: Form Styling

    Hi!

    1- Please add following code to Quick CSS in Enfold theme options under General Styling tab

    input#mc4wp_email { width: 30% !important; float: left; margin-right: 10px !important; }

    2- Please add a Code Block element above your images and add following code inside it

    <form action="http://www.savelolly.com/" id="searchform" method="get" class=""><div> <input type="submit" value="" id="searchsubmit" class="button avia-font-entypo-fontello"> <input type="text" id="s" name="s" value="" placeholder="Search"></div></form>

    Then you can turn on custom CSS field for ALB elements and add a custom class to your Code Block element, i.e. “custom-search-form” and add following code to Quick CSS in Enfold theme options under General Styling tab to adjust it

    .custom-search-form input#s { padding: 20px 80px 20px 20px !important; }

    Best regards,
    Yigit

    #276315

    In reply to: Custom Social Icon

    #276311

    In reply to: Ajax Portfolio

    Hey!

    Please add a custom ID to your color section – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png
    for example “custom-section” without quotes. Then add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    #custom-section.avia-section { min-height: 250px; }

    Cheers!
    Yigit

Viewing 30 results - 218,971 through 219,000 (of 243,602 total)