Viewing 30 results - 239,011 through 239,040 (of 241,745 total)
  • Author
    Search Results
  • #26543

    Topic: Bug Gallery

    in forum Enfold
    DigitalMedia
    Participant

    Actually, i can’t get any gallery look like this.

    2 bugs occur :

    1. The border of the gallery has 1 line & not 2.

    2. I can’t get the size like here on the demo, i insert via avia, Gallery Media Element, & then whatever i set as setting, nothings work, it’s always automatically big & fit the width of the block.

    URL : http://www.digitalmedia.pro/pauldaniel/?page_id=2446

    #130467

    Probably the problem is that you already saved an individual page setting (post meta value) for all pages. Try to add following code to the bottom of functions.php

    add_action( 'admin_init', 'avia_remove_meta');
    function avia_remove_meta()
    {
    $post_types = array('post','page','portfolio');
    $count = 0;

    //iterate over each post type
    foreach($post_types as $type)
    {
    //get all posts of a certain type
    $the_query = new WP_Query( array('post_type' => $type, 'posts_per_page'=>-1) );

    //check if any post were retrieved
    if(!empty($the_query->posts))
    {
    //iterate over each post and check if the post has a gallery key
    foreach($the_query->posts as $entry)
    {
    //since there might be hundreds of posts make sure php doesnt time out
    @set_time_limit(45);
    $success = delete_post_meta($entry->ID, 'footer');
    }

    }
    }
    }

    to reset these individual settings. Then load the admin page (can take some time) and remove the code again. Afterwards go to Enfold > Footer > Default Footer Widgets & Socket Settings and select “Display only the socket (no footer widgets)” or any other option.

    #130808

    First make sure you’re using the latest version of Enfold (1.8.1). Then try to install a smtp plugin like: http://wordpress.org/plugins/wp-smtp/ and configure it to use your mail server. Our contact form now uses wp_mail() by default and you don’t need to use any additional filter code to activate the wp_mail() function instead of the mail() function.

    #130861

    In reply to: Qform problem

    This is probably a problem with the wpautop filter. A quick temp. solution would be to remove it. Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace

    return "<div class='avia_textblock'>".wpautop( ShortcodeHelper::avia_remove_autop($content) )."</div>";

    with

    return "<div class='avia_textblock'>".ShortcodeHelper::avia_remove_autop($content)."</div>";

    #130723

    Seems there’s a css file missing:

    http://developasia.com.au/wp-content/themes/enfold/config-layerslider/LayerSlider/skins/minimal/skin.css

    I’ve checked this on local unzipped Enfold package and there are no skin files within. So maybe this need to be checked by support. :)

    #26564

    Topic: SEO Issue

    in forum Enfold
    Daniel
    Participant

    Hello,

    Since using enfold as my theme and making my website live the SEO doesn’t seem to list or index the frontpage(homepage) and only indexes the contact page?

    http://www.happREMOVEyvalleREMOVEyfoundation.com/

    Please remove the 2 REMOVE above to get the correct address, just don’t want Google to index this when it’s not indexing my other pages lol..

    I did notice it indexed:

    http://www.happREMOVEyvalleREMOVEyfoundation.com/homepage/feed and I thought maybe that’s causing duplicate content and not indexing the homepage? So I used Google Webmaster Tools to remove the three following:

    homepage/feed/

    wp-content/themes/toggleway/config-layerslider/LayerSlider/skins/

    wp-content/themes/toggleway/framework/

    After doing that all my www. indexes were removed?

    As you can see by doing the: site:www.happREMOVEyvalleREMOVEyfoundation.com/ in Google.

    If you do the same without the www. you will see it only shows the contact page and some other random pages..

    I would really appreciate help on this as I want to start purchasing this theme for all my future projects, however I want to make sure the index and SEO is sorted.

    In short why won’t ‘home’ index but contact does? I’ve checked everything I can think of.. it has follow, index etc.. the sitemap seems fine.. bing.com shows the homepage.. except for the fact it shows the http:// and not the http://www. I want all my pages to be http://www and not http:// in all searches. I can give you admin access for both cpanel and wordpress if required.

    I know SEO isn’t properly a big deal in these forums but if you help me you’ll be enabling a valued customer to keep giving you money for future projects ;) It’s a good investment :P

    Cheers,

    Daniel

    #130737

    Hi,

    You need to WordPress 3.5 or higher. Did you extract the enfold theme zip file?

    Please watch this video: https://vimeo.com/channels/aviathemes/64927356

    Regards,

    Ismael

    #130668

    Hi,

    Please post the translation link here. :)

    Regards,

    Ismael

    #130253

    Hi,

    You need to upload the latest version of the theme files via FTP like what Devin said. Watch the video. https://vimeo.com/67209750

    Regards,

    Ismael

    The blog element code can be found in wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesblog.php and it uses the standard post loop file includes/loop-index.php. You could rewrite it and include different templates based on the taxonomy attribute like

    if($atts['taxonomy'] == 'mytaxonoy')
    {
    get_template_part( 'includes/loop', 'mytemplate' );
    }else{
    get_template_part( 'includes/loop', 'index' );
    }

    #116491

    In reply to: Enfold Showcase

    I’ve been following Kriesi’s work and downloading his templates for some time now. I have to say that Enfold is a quantum leap in regards to building websites.

    Finally I can spend more time designing the look and structure of my sites knowing they will work beautifully on any device especially mobile phones.

    I would like to congratulate Kriesi and his team for such a brilliant product (and service) and for that Milestone you reached through Themeforest, well done.

    Here is my site I launched 2 days ago. I only used a small amount of CSS coding, namely for the fonts and to change the colour of the line under the main header section. Apart from that I was able to design this pretty much how I composed it in photoshop.

    http://brandvine.com.au

    Regards

    Jamie Russ

    #130427

    In reply to: Enfold tablles

    **livedealer.org/dev/live-casino-games/live-blackjack/house-edge-comparisons/**

    **livedealer.org/dev/live-casino-games/live-blackjack/rule-comparisons/**

    **livedealer.org/dev/live-casinos/**

    Are the only 3 added thus far…more to come.

    They will all contain different content…one similarity is that most will be 100% page width.

    cheers

    I’ll tag this for Kriesi because I’m not sure if the file should be included or if the inclusion code is obsolete. For a quick fix open up wp-contentthemesenfoldconfig-layersliderLayerSliderbuilder.php and replace

    if(file_exists($custom_trs)) {
    $data = file_get_contents($custom_trs);
    } else {
    $data = file_get_contents($sample_trs);
    }

    with

    if(file_exists($custom_trs)) {
    $data = @file_get_contents($custom_trs);
    } else {
    $data = @file_get_contents($sample_trs);
    }

    #130669

    1) Try to replace following line in functions-enfold.php

    $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'=>'menu_order, post_title');

    with

    $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'=>'menu_order');

    2) If this doesn’t help make sure you set a valid menu order value for all pages (“Pages Attributes” field on the page editor page). You can also try http://wordpress.org/plugins/post-types-order/

    #130622

    Actually the problem is once i add the “woocommerce” to my wordpress, the back stage of Enfold goes wrong…

    http://www.thecarrierseattle.com/error2.jpg

    thx for the question c!

    best wishes

    #26552
    joelleknopp
    Participant

    Hi,

    I have tried several configurations thru the enfold theme and tha form simply does not send the message, altough it says “message successfully sent!

    Website: http://www.bloisebuffet.com.br

    I even tried using the solution proposed on this thread: https://kriesi.at/support/topic/17-contact-forms-not-sending-email – but it did not help.

    Please, help me.

    Thanks

    #26546
    Chris Reed
    Participant

    Hi,

    I’m working on an ajax portfolio page with Enfold and I’m having trouble determining the best image size to upload for the portfolio “featured image” — Or the image that shows up in the grid. I’m thinking it will just be a two column portfolio page, however, if I decide to use three columns a suggested image size would be useful as well.

    Also. I will most likely display a slideshow of each portfolio item when you click on the ajax grid, so I would also like to know what size image should be used there (assuming it is a different size than the featured/grid image).

    I really appreciate all the great support here for this awesome theme. I just seemed to get stuck when I was trying to size images for the portfolio and every time I uploaded photos the page would look really distorted and disorganized.

    Thanks again!

    -Chris

    #26541

    Topic: Enfold

    in forum Enfold
    WardenCliff
    Participant

    Just bought the Enfold theme and was messing around with it for about a half hour. Then I decided I wanted to start over from scratch. Now my website (http://www.wardencliffdigital.com/) looks crazy! Everything is out of alignment, misplaced, and generally just wrong.

    I just want to completely reset my page. I tried uninstalling the theme, deleting it, and reinstalling, and it gave me the same page anyway. I also tried to import the dummy data again as well, and I think that’s making it worse.

    I’m not a pro at WordPress, but I just need to know how to reset back to the basic theme I had when I first imported the dummy data.

    Thanks!

    #114753

    Hi, I would like to have more options with the pricing tables. For example the ability to add an underline or a small (?) icon to the pricing table text which would bring up a tooltip for more details about the that specific box. See example here:http://demos.pogoking.net/html/?theme=cheerapp (I’m not a fan of this style, just a good example). Maybe the tooltip could fly in from the top with an downfacing point arrow at the text.

    Also it would be great if we could add small icons like a green check mark or red “X” to individual boxes. Ex here: http://themeforest.net/item/sensation-responsive-wordpress-theme/full_screen_preview/2863147

    #26533

    Topic: CHART ISSUE WITH LINKS

    in forum Enfold
    adworks
    Participant

    I have a chart on a few pages like this:

    http://adworks.wpengine.com/power-pressure-washing/

    (hosted on WPengine) />

    I’m using SEO smart links on the site and the code is showing up.

    I noticed if I change the heading row to default the code goes away but this obviously takes away from the highlighted heading feature and the aesthetic on the desktop view.. And honestly in responsive the chart becomes difficult to read correctly anyway (unless you inject the name of the service provider in each field) so I am leaning towards hiding it on the mobile view anyway. But it looks like it is related to the responsive design. At that page width, Enfold/Avia-layout-builder is employing some sort CSS (not clear to me yet as to why.) Unfortunately it doesn’t support HTML entities (i.e., the links), and thus we see the raw HTML markup written on the page.

    Enfold/Avia-layout-builder is adding this dynamic CSS to the page for the given page-width:

    .avia-table-1 td:nth-of-type(1):before { content: ‘COMPETITOR’S PRESSURE CLEANING ‘; }

    As you can see its trying to insert content using CSS instead of HTML. I really can’t understand why it does this, since #1 rule of CSS is that CSS is for presentation and not content. Anyway, the “content” style doesn’t support rendering of HTML content here.

    Any feedback? I need to hide this ASAP so if you don’t respond by Monday it may not be there to view.

    #130736

    also, in case it is of any relevance… all plugins were deactivated at the time of installation, and are still deactivated.

    Thanks again

    #26526
    bhaveshp
    Participant

    Hi,

    I am trying to instal Enfold onto my website which is hosted by Bluehost. (i used the one click installation proceedure from MOJO marketplace to instal wordpress)

    When I go through the wp-admin to try to install Enfold and try to upload the correct Enfold.zip (according to the walkthrough video) I get a failure notice saying “Are you sure you want to do this?” with a clickable option of “Please try again.” When I click the link it takes me back to the upload page. When I try the process again I get the same issue. similar to kev33 in this thread: https://kriesi.at/support/topic/i-cant-install-enfold-theme)

    When I manually transfer the enfold folder using FileZilla, Enfold does not appear under the themes I can use.

    Please could you help me resolve this?! I desperately want to use the enfold theme for my website and it is very frustrating to have bought the theme and to be unable to use it!

    Many thanks in advance for your help!!!

    Bhavesh

    #130252

    Hi.

    How do I update to the latest version while retaining the customised Enfold Options which I made in WordPress admin panel? e.g. the logo, favicon, styling, etc.

    I never made any changes to any files, all the customisation was made using WordPress admin panel Enfold theme options tab.

    Thanks for your help!

    #130680

    Ooops, nevermind, purged cache and it’s now current.

    #130679

    I don’t know, I still get this …

    Theme: Enfold

    Version: 1.7

    Installed:

    AviaFramework Version: 1.8

    AviaBuilder Version: 0.3

    ML:64-PU:31-PLA:5

    I ftp’d the entire enfold folder after it’s been unzipped onto my server. I noticed all the dates have changed to the time of the download so I’m assuming all the files on the server have been overwritten.

    #26498
    eatdrinkgive
    Participant

    Hi,

    I’ve been trying to get the images within my posts to appear as a slideshow (i.e. with all images in the lightbox) but at the moment they will only appear one by one. I’d also like to set the featured images from my posts as non-clickable.

    I’m using the Enfold theme which uses PrettyPhoto as the lightbox and here is a link to a post as an example: http://www.eatdrinkgive.org.au/cook-off-2013-round-3-le-grande-finis/

    Any help you can provide would be greatly appreciated.

    Many thanks

    Brendon

    #114752

    Can we PLEASE have options to add text or headings inside the contact form!

    #26519
    AndyRampage
    Participant

    I am new to WordPress and have recently purchased the Enfold theme which included the free LayerSlider plugin (valued at $15). My issue is that the “Layerslider WP” widget is not available in the Appearance/Widgets section to “drag & drop”.

    It may also be of note that the LayerSlider plugin shows in the “Installed plugins” area but has a status of deactivated and when attempting to activate it, a fatal error occurs stating it cannot be “redeclared”.

    Please advise (in simple terms) what/if there is anything I can do.

    Regards,

    Andy.

    #130285

    Hi Nick,

    Yes. Using safari and viewing this page: http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/ it has the same choppy effect.

    Gonzo

    #26517
    SuellenH
    Participant

    Hi,

    Working with Enfold – great features – thanks.

    Can you please tell me how to create a Single Portfolio: 2/3 Gallery as shown on the demo:

    http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-gallery-3/

    I would like it work the same way as the demo, click through from a Portfoilo like this: http://kriesi.at/themes/enfold/portfolio/

    When click on the image, it goes to the single portfolio 2/3 gallery per the link above.

    Thanks for your help

Viewing 30 results - 239,011 through 239,040 (of 241,745 total)