Viewing 30 results - 225,211 through 225,240 (of 241,837 total)
  • Author
    Search Results
  • #229973

    Hey!

    I could find the bug. We’ll fix it with the next update. For now open up wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/generic-helper.class.php and replace:

    
        		$link = explode(',', $link);
    

    with

    
                if(!is_array($link) && is_numeric($link))
                {
                    $permalink = get_permalink($link);
                    if($permalink) return $permalink;
                }
    
        		$link = explode(',', $link);
    

    Best regards,
    Peter

    #229967
    This reply has been marked as private.
    #229966

    Hey!

    You can try to implement the “let the ajax portfolio display below below all the portfolio posts?” option. I’m not sure if it works out but you can try it. Note that I can’t provide additional support in case it doesn’t work – in this case please hire a freelancer to modify the portfolio element for you. Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and delete:

    
    			if($linking == "ajax")
    			{
    			global $avia_config;
    
    			$output .= "<div class='portfolio_preview_container' data-portfolio-id='{$container_id}'>
    							<div class='ajax_controlls iconfont'>
    								<a href='#prev' class='ajax_previous' 	".av_icon_string('prev')."></a>
    								<a href='#next' class='ajax_next'		".av_icon_string('next')."></a>
    								<a class='avia_close' href='#close'		".av_icon_string('close')."></a>
    							</div>
    							<div class='portfolio-details-inner'></div>
    						</div>";
    			}
    

    Then replace:

    
    			$output .= "</div>";
    
    			//append pagination
    

    with

    
    			$output .= "</div>";
    			if($linking == "ajax")
    			{
    			global $avia_config;
    
    			$output .= "<div class='portfolio_preview_container' data-portfolio-id='{$container_id}'>
    							<div class='ajax_controlls iconfont'>
    								<a href='#prev' class='ajax_previous' 	".av_icon_string('prev')."></a>
    								<a href='#next' class='ajax_next'		".av_icon_string('next')."></a>
    								<a class='avia_close' href='#close'		".av_icon_string('close')."></a>
    							</div>
    							<div class='portfolio-details-inner'></div>
    						</div>";
    			}
    			//append pagination
    

    Cheers!
    Peter

    #229959

    Hi!

    You can add the code tp the parent theme functions.php (enfold/functions.php) or to the child theme functions.php. You must change the ratio directly in the code. If many users request a ratio option will add a new option field to the color section.

    Regards,
    Peter

    Hi Fred1969!

    Please try to increase the allocated php memory to 128M: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/ – currently it’s set to 64M and maybe the checkout process requires more memory in combination with Enfold and the ajax call on the checkout page then fails.

    Best regards,
    Peter

    #229946

    Hi dalcnetsrl!

    From what version of Enfold did you update? You should probably update the avia.js file then recreate the broken elements.

    Best regards,
    Ismael

    #229934

    Hi Rusty!

    Can you please post a screenshot of the issue? I’ll ask Kriesi and Devin to check it. Meanwhile, please try to add this on your custom.css or Quick CSS:

    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
        img, a img {
        max-width: 100%;
       }
    }
    

    Nice website. :)

    Regards,
    Ismael

    #229925

    Hey Miguel!

    Try adding this code to the Quick CSS:

    .single .entry-content .avia_image {
        margin-bottom: 50px;
    }

    Cheers! 
    Josue

    #229912

    In reply to: WPML vs ENFOLD bug

    Hi mrTwister!

    Please increase the wordpress php memory limit. Ask your host to edit php.ini file and increase the max execution time.

    Refer to this link on how to increase the memory limit:
    http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Cheers!
    Ismael

    #229909

    Hey!

    1.) Please deselect the blog page on Enfold > Theme Option > Where do you want to display blog? option. Edit the blog page then add the Blog Posts element along with the other content.

    2.) How do you insert the javascripts? You can’t just insert scripts inside a posts or page. Use a plugin like http://wordpress.org/plugins/insert-html-snippet/ if you want to use javascripts on posts or pages.

    Regards,
    Ismael

    #229905

    Hey!

    Please download the latest version then update your theme via FTP. If you want to show more content on the Blog page and not just the blog posts, deselect the page on Enfold > Theme Options > Where do you want to display blog? option. Edit the blog page then add the Blog Posts element along with the other contents.

    Regards,
    Ismael

    #229904

    In reply to: Subscribe to My Blog?

    Hey NaturaIntegrativeMedicine!

    You can go to Appearance > Widgets then use the Enfold RSS Link and Twitter Account widget.

    Best regards,
    Ismael

    #229894
    Mkieling
    Participant

    Dear support members,

    How do you create more space between lines in posts?

    For instance, I’ve got this post: http://www.step1.com.br/diferencasentretoeflibtxitp/

    And I’d like to create more space between the picture and the text above and below it.

    How can it be done?

    Many thanks,

    Miguel

    #229884

    Hi!

    Enfold already have this functionality.

    Cheers!
    Josue

    #229881

    Hey bivvo!

    As far as I know Enfold doesn’t use hentry on portfolio items. My guess is that it was added by another plugin.

    Best regards,
    Devin

    Hello Devin!

    Thanks so much for the quick reply, I really appreciate it. Unfortunately, it hasn’t yielded any different results. Here is what the beginning of my enfold functions.php file looks like (beyond what I’ve copy/pasted here, there are now zero changes…it’s exactly as it comes in a fresh download):

    <?php
    
    global $avia_config;
    
    /*
     * if you run a child theme and dont want to load the default functions.php file
     * set the global var bellow in you childthemes function.php to true:
     *
     * example: global $avia_config; $avia_config['use_child_theme_functions_only'] = true;
     * The default functions.php file will then no longer be loaded. You need to make sure then
     * to include framework and functions that you want to use by yourself. 
     *
     * This is only recommended for advanced users
     */
    
    if(isset($avia_config['use_child_theme_functions_only'])) return;
    
    /* adding filter for instant search to return relevanssi filtered pages/posts */
    
    add_filter('avf_ajax_search_function', 'avia_init_relevanssi', 10, 4);
    function avia_init_relevanssi($function_name, $search_query, $search_parameters, $defaults)
    {
        $function_name = 'avia_relevanssi_search';
        return $function_name;
    }
    
    function avia_relevanssi_search($search_query, $search_parameters, $defaults)
    {
        global $query;
        $tempquery = $query;
    
        $tempquery->query_vars = $search_parameters;
        relevanssi_do_query($tempquery);
        $posts = $tempquery->posts;
    
        return $posts;
    }
    
    /*end relevanssi filter */
    crazyflx
    Participant

    I’m in the process of finishing up a development site before I move it to a live environment. I absolutely love the Enfold theme and have been able to, thus far, build a beautiful site using it (still have a lot left to finish unfortunately).

    EDIT: I’m using the newest/latest version of Enfold, Version 2.5.2

    Anyway, I installed Relevanssi and now my “instant search” results that Enfold serves up via Ajax do not match those results on the actual search results page. Within the Relevanssi settings I input specific page ID’s that I do not want returned in the search results. On the search results page, those pages I don’t want to appear in the search results don’t appear, which is great.

    However, they are still appearing within the “Instant Search” results. This is very bad, because I have pages that should only be seen by customers of mine (like “Thank you for purchasing”, “Reduced Special Pricing Pages” and so on).

    After searching the forums, I found a few posts detailing similar issues. I included the following code which I found on this post: https://kriesi.at/support/topic/enfold-code-update-for-2-2-to-use-relavanssi-plugin/ within my themes functions.php file (at the very bottom of it, beneath everything else within the file)

    add_filter('avf_ajax_search_function', 'avia_init_relevanssi', 10, 4);
    function avia_init_relevanssi($function_name, $search_query, $search_parameters, $defaults)
    {
        $function_name = 'avia_relevanssi_search';
        return $function_name;
    }
    
    function avia_relevanssi_search($search_query, $search_parameters, $defaults)
    {
        global $query;
        $tempquery = $query;
    
        $tempquery->query_vars = $search_parameters;
        relevanssi_do_query($tempquery);
        $posts = $tempquery->posts;
    
        return $posts;
    }

    Unfortunately, that doesn’t work. I still am seeing pages that I specified within the Relevanssi settings as pages to not be returned in search results within the “Instant Search” results returned (but again, the pages I specified within the Relevanssi settings to not be returned in search results DO NOT appear on the actual search results page, which is correct…but they’re still appearing within the instant search results).

    • This topic was modified 11 years, 2 months ago by crazyflx.
    ikaika72
    Participant

    For some reason the sharing buttons at the bottom of my pages are resulting in failed attempts. Here is the result:

    ?shared=email&msg=fail

    #229849

    Thanks Devin,
    Setting parallax was not obvious to me either. I was looking for an avia box inside the color section in the sample page, but did not realize you have to edit the color section itself. Getting to know the theme. Enfold is pretty snazzy.

    Thanks for providing info on setting anchor links. I wanted to do that as well.
    Cheers!
    Todd

    #229845

    In reply to: Layout makes "jump".

    Hi Yigit,
    Windows 7 and Firefox, but on Chrome effect is the same.
    I think it’s not depend on OS or browser.
    http://kriesi.at/themedemo/?theme=enfold – I see everything is OK.
    Problem appeared when I deleted some site elements from sample Porfolio 4 Columns.

    Click here, please:
    http://fotofaber.pl/?page_id=734
    and then from menu Portfolio / Portfolio 4 Column.
    Layout is unstable. Logo and other elements change its position.
    Is it visible?

    Best regards,
    fotofaber

    #229842
    bivvo
    Participant

    hi there

    google webmaster tools says that there are the following entries missing for hentry on portfolio entries:

    /portfolio/
    missing 17
    Folgendes fehlt: author.
    Folgendes fehlt: updated.
    itemtype: http://microformats.org/profile/hentry

    how can i fix this and why is that not included in the theme enfold?

    thx for support.

    #229832

    @zerozendesign

    You don’t need a plugin. On Envato-Page for Enfold you can find a Downloadlink to a Childtheme that you can use with Enfold. Just scroll down to description. It’s not so hard to create one, but you’re right, it’s the best way to stay intact for updates, and the flexibility to manage things on the way you want it, grows a lot..

    Hey joerg_schaefer!

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

    #av_section_1 .content {
    padding-bottom: 0;
    }

    Best regards,
    Yigit

    #229824

    Hey William!

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

    #top .main_color input[type='text'], .main_color tr:nth-child(even), table a { color: white!important; }

    Regards,
    Yigit

    #229811

    Hi!

    Add following code to Quick CSS

    #top .fullsize .template-blog .blog-meta {
    float: left; } 
    .entry-content {
    width: 80%;
    margin-left: 30px!important;
    }
    #top .fullsize .template-blog .post .entry-content-wrapper > * { margin-left: 30px; }

    Best regards,
    Yigit

    #229808
    zerozendesign
    Participant

    Hi guys –

    How would I go about converting the slideshow at http://codelessme.com/weightlossrebels (the images of the girls) to have the background like the slideshow at http://weightlossrebels.com? I am converting the website to enfold.

    also – I added the slideshow, but it is filling out the entire area even those I selected original height and width as the size. Any ideas?

    Thanks
    David

    #229798

    Hi!

    I am not sure if i understand you clearly. Please post a screenshot and show the changes you would like to make. If you would like to make some sections fullwidth, you can add a Color Section and give it a custom ID and add following code to Quick CSS in Enfold theme options under Styling tab

    #your-color-section .container { width: 100%; }

    You can simply edit your frontpage and add any slider you want.
    Please take a look at Enfold documentation here http://kriesi.at/documentation/enfold/
    and find video tutorials here http://vimeo.com/channels/aviathemes

    Cheers!
    Yigit

    #229797

    Yigit – it needs to be LEFT OF SNIPPET CONTENT not over the top. I see the same thing right now.

    #229794

    Hey!

    Images already on the left on my end http://i.imgur.com/O4fIbZF.jpg Please try flushing browser cache and refresh your page a few times

    Best regards,
    Yigit

    #229790
    Alessandro Marengo
    Participant

    Hi!
    As in the subject, right now I have 2.5.4 version but with previous version of avia.js, because chrome alerted me about row 1594 error.
    This time I shouldn’t have update Enfold…
    I got the following errors: images in box disappeared, mega menu from ltr to rtl.
    Please, double check it.

Viewing 30 results - 225,211 through 225,240 (of 241,837 total)