Viewing 21 results - 31 through 51 (of 51 total)
  • Author
    Search Results
  • #813889

    In reply to: Product License Key

    Whitney
    Guest

    Awesome! I’m not sure if you will be able to answer this one then but I will give it a try!

    Right now I am working on updating our WooCommerce Product pages. Currently when editing the product I try to add the “Product Info Tab” into my avia layout builder and upon updating the page it pretty much wipes everything out.

    Below I gave the link to my staging website of the page that is messed up (sport-cushion) and another product with no “Product Info Tab” (campad)

    I’m not sure if this is even theme related or if you can help but I am no developer so this one has stumped me.

    Thank you!
    Whitney

    #749588

    Great thank you it worked! However, elements of the theme are still not working. For example, when I try to edit some of my Pages, why is the text in the content builder/text block white? I cannot see what I am editing.

    #739127
    Chay20
    Participant

    Hi there,

    I am having trouble editing my pages with the Avia Layout Builder. All I see is a rotating circle of death… Please help, thank you.

    #708013
    BornAgainVirgo
    Participant

    Greetings,

    First off, I’d like to thank your team for the upkeep of this wonderful forum! It’s been a lifesaver on several occasions. You guys are rockstars!

    Currently, I’m struggling with a seemingly unsolvable issue. After a week-long respite, I began reworking the content (text and pics) on a preexisting page, via the Avia Layout Builder (as I normally do). But, shortly after I began editing, the layout builder started malfunctioning and hasn’t worked properly since. This malfunction prohibits edited content from being saved. It occurs on edits made to both saved templates and newly created content alike. It also occurs on previously created pages and newly created pages, too.

    The weird part is, the malfunctions aren’t consistent. Sometimes, when I attempt to change a picture inserted into a Color Section or Column, clicking on the Update button results in the deletion of 85% of the content on the page (i.e. different, unedited Columns and Text Blocks disappear). Other times, I can get away with editing the pictures in a Color Section, but then, after pushing “Update,” I can’t edit the content in a preexisting Text Block. Oddly enough, in some instances, whenever I try to click the “Save” button after editing a Text Block or picture (via the Avia Layout builder), the save button won’t work at all—I actually have to close the editor via the little “X” in the top, right corner, without saving. And sometimes, when I try to click “Save,” not only are the changes unsavable, but Avia’s Visual Editor randomly switches to its Text Editor mode. Again, pushing the “Update” button in any of these situations results in loosing 85% of the page content—be it preexisting or newly created.

    Having searched for a fix within this helpful forum, I followed all of the suggestions listed in the following posts: http://kriesi.at/documentation/enfold/my-enfold-layout-builder-is-not-loading-properly/
    https://kriesi.at/support/topic/avia-layout-builder-not-saving-content/

    Here’s a quick outline of all the things I’ve tired (so you don’t have to reread the referenced posts):
    —Disabled plugins and Reset browser cache (multiple times)
    —Tested “saving error” on multiple browsers (e.g. Chrome, Firefox, & Safari)
    —Increased allocated .PHP memory to 128M and then again to 256M
    —Downloaded new Enfold Theme via Themeforest account (installed via WP)
    —Downloaded new Enfold Theme via Themeforest account (installed via FTP)

    NOTE: Enfold Theme was (and still is) up to date (3.8)

    None of the aforementioned solutions have fixed my Avia Layout Builder “saving issue.” Got any ideas?
    Thanks in advance…

    shaevy
    Participant

    I am using:
    Theme: Enfold
    Version: 3.7.1
    Installed: enfold
    AviaFramework Version: 4.5.3
    AviaBuilder Version: 0.9
    – – – – – – – – – – –
    ChildTheme: Enfold Child
    ChildTheme Version: 1.0
    ChildTheme Installed: enfold
    WP:4.6

    and everything worked just fine. Yesterday I went live with my page and after that installed Yoast SEO(3.4.2). Now when I try to edit pages with my Administrator account Avia Layout architect is not loading(spinning wheel). Editing posts on the other hand is working fine.
    Strangely I tried to add a new admin account and everything works fine with this newly created account.

    Please look into that. As far as I can tell from this support forum it seems that I am not the only one affected by this problem.

    Thanks.

    • This topic was modified 9 years, 4 months ago by shaevy.
    #657965

    Ok I solved more or less all the issues axcept one. First I work with the woocommerce multilingual settings as stated above. This give me the possibility of opening the product in each language from teh standard avia layout builder of Enfold. In this way I can check all settings (example I found that in the automatic copy the Name Your Price Option was not set and that’s why it didn’t appear in the front end).

    I downloaded a wpml-config.xml file that I copied in my child theme and the menu now has the same color taken from my custom css style sheet.

    However the custom shortcodes don’t work. They appear in the avia layout builder in the administrative panel (while editing the product), but nothing appears in the front-end. It is like the php function I wrote is not working in the front end translated page.

    The code is the following… maybe I should add something the php file.

    It takes takes the formatted name from each variation of the product (which are cruise dates) and it extrapolates the variation name and its stock availability (= places available in each cruise date).

    <?php
    
    if( !class_exists( 'woocommerce' ) )
    {
    	add_shortcode('csr_calendar_button', 'avia_please_install_woo');
    	return;
    }
    
    if ( !class_exists( 'avia_csr_calendar_button' ) )
    {
    	class avia_csr_calendar_button extends aviaShortcodeTemplate
    	{
    		/**
    		 * Create the config array for the shortcode button
    		 */
    		function shortcode_insert_button()
    		{
    			$this->config['name']		= __('CSR Calendar', 'avia_framework' );
    			$this->config['tab']		= __('Plugin Additions', 'avia_framework' );
    			$this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-button.png";
    			$this->config['order']		= 23;
    			$this->config['target']		= 'avia-target-insert';
    			$this->config['shortcode'] 	= 'csr_calendar_button';
    			$this->config['tooltip'] 	= __('Display the "CSR Calendar" button for the current product', 'avia_framework' );
    			$this->config['drag-level'] = 3;
    			$this->config['tinyMCE'] 	= array('disable' => "true");
    			$this->config['posttype'] 	= array('product',__('This element can only be used on single product pages','avia_framework'));
    		}
    
    		/**
    		 * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
    		 * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
    		 * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
    		 *
    		 *
    		 * @param array $params this array holds the default values for $content and $args.
    		 * @return $params the return array usually holds an innerHtml key that holds item specific markup.
    		 */
    		function editor_element($params)
    		{
    			$params['innerHtml'] = "<img src='".$this->config['icon']."' title='".$this->config['name']."' />";
    			$params['innerHtml'].= "<div class='avia-element-label'>".$this->config['name']."</div>";
    			$params['content'] 	 = NULL; //remove to allow content elements
    			return $params;
    		}
    
    		/**
    		 * Frontend Shortcode Handler
    		 *
    		 * @param array $atts array of attributes
    		 * @param string $content text within enclosing form of shortcode element
    		 * @param string $shortcodename the shortcode found, when == callback name
    		 * @return string $output returns the modified html string
    		 */
    		function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    		{
    			$output = "";
    			$meta['el_class'];
    			
    			global $woocommerce, $product;
    			if(!is_object($woocommerce) || !is_object($woocommerce->query) || empty($product)) return;
    
    			// $product = wc_get_product();
    			
    			$output .= "<div class='av-woo-calendar-button ".$meta['el_class']."'>";
    			ob_start();?>
    			
                    <table cellspacing="0" cellpadding="2">
                        <thead>
                            <tr>
                                <th scope="col" style="text-align:left; background-color:rgba(255,255,255,1); vertical-align:middle;"><?php _e('Cruise', 'woothemes'); ?></th>
                                <th scope="col" style="text-align:center;background-color:rgba(255,255,255,1);"><?php _e('Places<br/>available', 'woothemes'); ?></th>
                            </tr>
                        </thead>
                        <tbody>
                        <?php
                        
                        $args = array(
                            'post_type'			=> 'product_variation',
                            'post_status' 		=> 'publish',
                            'posts_per_page' 	=> -1,
                            'orderby'			=> 'title',
                            'order'				=> 'ASC',
                           'meta_query' => array(
                                array(
                                    'key' 		=> '_stock',
                                    'value' 	=> array('', false, null),
                                    'compare' 	=> 'NOT IN'
                                )
                            )
                        );
                        
                        $loop = new WP_Query( $args );
                    
                        while ( $loop->have_posts() ) : $loop->the_post();
                        
                                        $product = new WC_Product_Variation( $loop->post->ID );
    									
                                if (get_the_title( $loop->post->post_parent ) == 'CSR Expeditions Payment')
                                {		
    								$variation_formatted_name = $product->get_formatted_name();
    								$variation_name_array = explode("&ndash;", $variation_formatted_name);
    								$variation_name = $variation_name_array[2];
    								$variation_price = $variation_name_array[3];
    								$variation_sku = $variation_name_array[0];
    								$variation_name_only = explode(":", $variation_name);
    								$variation_name_only = $variation_name_only[1];
                            ?>
                            
                            <tr>
                                <td><?php  echo $variation_name_only ."&ndash;" . $variation_price; ?></td>
                                <?php
    								if (intval ($product->stock) >0)
    								{ ?>
                               			<td style="text-align:center; font-size: 13px; background-color:#70C940; color:rgba(255,255,255,1);"><?php echo intval ($product->stock); ?></td>
    								<?php
                                    }
    								else
    								{ ?>
                               			<td style="text-align:center; font-size: 13px; background-color:#D11E1B;color:rgba(255,255,255,1);"> <?php echo intval ($product->stock); ?></td>
                                    <?php    
    								}
    								
    							?>
                            </tr>
                            <?php
                                }
                        endwhile; 
                        
                        ?>
                        </tbody>
                    </table>
    
    			<?php
    			
    			$output .= ob_get_clean();
    			$output .= "</div>";
    			return $output;
    		}
    	}
    }
    

    I’m just experiencing the same troubles, the only solution for me would be an option to deactivate avia for editing some of the pages. The plugin “Cost Calculator” requires Visual Composer. So after spending a lot of money for plugins i’m not sure if i just should use another template. I mixed the two layout builders, and for one page it really worked. But for some other pages it’s not working. Every time i update my post now, wordpress just saves the avia layout / pagecode instat of the Visual Composer… I would be very happy if there would be a soulution…

    #568673
    JonHoOfficial
    Participant

    Hello Kriesi and Enfold Support Team,

    The Avia Layout Builder suddenly stopped working properly. Whenever I tried editing a page, the builder slightly loads and crashes. Instead of showing the site elements, it shows the home page of my main site on the screen. My site is using the multi-site feature and this is happening on all pages for all created sites.

    I tried activating and deactivating plugins and switching between my Enfold theme and Enfold child theme but nothing works.

    Thanks,
    Jonathan Ho

    #561871
    indigotin
    Participant

    New thread opened from original post here https://kriesi.at/support/topic/pagination-on-blog-page-does-not-work-urgent/page/2/#post-561807 as requested by Ismael.

    Pages don’t seem to be working using Product Grid with Portfolio Items. When I click on page 2, it stays on page 1.

    I’ve updated to Enfold 3.4.7 and I tried editing the config-templatebuilder/avia-shortcodes/productslider.php file by replacing

    $params[‘offset’] = 0;

    with

    $params[‘offset’] = ( $page – 1 ) * $params[‘items’];

    But none of these seem to make any difference.

    #559648
    scottrseeley
    Participant

    I’m running Enfold theme just updated to 3.4.7 and WordPress with 4.4
    I’ve disabled all plugins except for WP Security

    Had to site up for a year and kept up to date. Everything was working well and when I updated to 3.4.7 and WP 4.4 I experienced significant issues editing current pages and portfolio entries but not posts.

    If I try to edit an existing page, there is no content to edit.
    I can build a new page with the Avia Builder and preview, then when I go back to edit, the builder and all content is gone. If I select the Default editor there is no content displayed.

    Again, this is on Pages and Portfolio entries – Posts seem to work fine.

    The site displays normally.

    I returned to Enfold 3.4.6 and the problem resolved. I’d like to keep up-to-day so please advise.

    Thanks.

    #530456
    kristenangel
    Participant

    Hi,
    I have searched many posts with this same subject, but I can not find a solution to get it to work again.

    Avia Layout Builder used to have templates built within, but now the page appears blank when editing. The Builder stopped working after I updated WordPress and Enfold.

    I’ve disabled all my plugins,
    renamed the plugins folder,
    updated Enfold (twice to be sure),
    updated WordPress (twice to be sure).

    Not only does it not work on old pages, but when I try to make new pages, the layout builder clears all content when I hit Publish.

    Please help!

    stedia
    Participant

    In addition to the problems I have reported at https://kriesi.at/support/topic/problems-with-avia-builder-and-widgets/

    I do have also an issue with Layerslider after the update to the latest version of Enfold and WP 3.2.2.

    My Layesliders on the various pages are working fine – see http://wijkbus.nl/wijkbus-rotterdam/wijkbus-delfshaven-rotterdam/
    However, the layer slider that is on my home page and that is build from dynamic content (posts) is not working anymore.
    Not on the page and also not as preview in the Layerslider editing mode.

    This was working fine just before the update.

    Any suggestions to find the root cause of this?

    #500637

    Hi!
    Thanks for continuing to help.
    VERY INTERESTING result here.
    1. I deleted the page in the live version of the site.
    2. I re-built using the Advanced Layout Builder
    3. I use the following elements on this page and nine others: 1) 2 grid blocks, 2) three text blocks, 3) 4 whitespace lines, 4) on icon list, 5) a full-width button, and 6) a full width sub-menu.
    4. After each element I added, I clicked “Save Draft”
    5. I was near the end of adding elements with all working fine. When I got to the first text box it hung up and went to endless loop after I saved.
    6. I deleted and started again. This time going straight to the text box (which is within the grid block).
    7. I added the heading and body text. Clicked save. Hung up again.
    8. I deleted and started again. This time going straight to the text box and only adding the heading (I put in the heading in the “TEXT” option rather than the Viewer). Hung up again. Was using text to add <h4></h4> heading.
    9. Tried again, this time not using TEXT editor, but VIEWER, same thing happened when I tried to use the <h4></h4> heading.
    10. Tried again. This time with no heading, but pasted in content from a word document that I used to temporarily park content from the page. Hung up gain.
    11. Tried again. This time by manually typing all content in the VIEWER section of the text block. So far it worked.
    12. Went into the text block under VIEWER and tried to add the header using <h4>MY TEXT</h4> clicked save draft. Hung up again.
    13. So clearly what’s causing this problem is that I cannot add headers using HTML code like <h4> which hangs it up either in VIEWER or TEXT editing mode. I can’t have a site where I can’t add headers! This isn’t a problem on any other page, but will now happen whenever I try to add headers. SO my option is to not use headers (unacceptable) or to be unable to edit pages. Not a good set of choices. Can you help?

    Thanks so much!

    #489211
    grahamonak
    Participant

    *EDIT 8/17/15 8:12PM CT*

    Looking into memory caching issues on the server to rule that out, working with the hosting team. Will update the thread.

    Hey guys,

    I have purchased several copies of Enfold for websites I build and it’s stopped working on one of my sites which is my main site.

    Here’s the issue:
    – When I edit pages I can’t see the advanced layout builder content. I can see the advanced layout builder on posts.
    – Clicking the advanced layout builder button does nothing when editing pages.
    – Clicking the “screen views” option does nothing when editing pages.
    – I cannot view the Enfold theme panel within WordPress to adjust any theme settings. It is blank with a little “view all options” link that does nothing but expand a blank window.

    Here’s what I’ve tried:
    – Fresh install of the Enfold theme
    – Fresh install of WordPress core files (excluding /wp-content, wp-config.php)
    – Clearing cache
    – Disabling all plugins
    – Renaming plugins folder temporarily
    – Using a different theme. When editing pages, the advanced layout html is carried over to the default text editing window but it’s all white. I have to highlight it to read it. Clicking “Text” or “Visual” tabs do nothing in the content window.

    I have done nothing to the site in several weeks. This is my personal site for my business. All other Enfold builds I have are functioning normally including ones hosted on my server (Siteground).

    I can get you login access.

    Any thoughts?

    • This topic was modified 10 years, 5 months ago by grahamonak.
    #435779
    lucein1774
    Participant

    I updated to WP 4.2.1 recently, running 3.1.3 version of Enfold.

    Previously editing pages with the Avia editor was working. Initially everything was working correctly although it was taking 20+ seconds for the Avia editor to load.

    now all I get is the spinning waiting icon waiting for the editor to load. Error showing in the console

    Uncaught TypeError: editor.getScrollInfo is not a function
    (anonymous function) @ posts-jquery.js?ver=1.2.5.1:177
    m.event.dispatch @ jquery.js?ver=1.11.2:3
    m.event.add.r.handle @ jquery.js?ver=1.11.2:3
    m.event.trigger @ jquery.js?ver=1.11.2:3
    e.event.trigger @ jquery-migrate.min.js?ver=1.2.1:2
    (anonymous function) @ jquery.js?ver=1.11.2:3
    m.extend.each @ jquery.js?ver=1.11.2:2
    m.fn.m.each @ jquery.js?ver=1.11.2:2
    m.fn.extend.trigger @ jquery.js?ver=1.11.2:3
    $.AviaBuilder.convertTextToInterface.$.ajax.success @ avia-builder.js?ver=0.8:895
    m.Callbacks.j @ jquery.js?ver=1.11.2:2
    m.Callbacks.k.fireWith @ jquery.js?ver=1.11.2:2
    x @ jquery.js?ver=1.11.2:4
    m.ajaxTransport.send.b @ jquery.js?ver=1.11.2:4

    Previously support told me to comment out line #289 (new avia_tinyMCE_button($tiny);) in the /config-templatebuilder/avia-template-builder/php/template-builder.class.php file to correct an previous issue. I tried both ways 1 being commented out and 2nd un-commented, but neither change the behavior when editing a page.

    also was told to add this wp-config.php – add (define(‘CONCATENATE_SCRIPTS’, false );)

    Please advise

    #410607
    altei
    Participant

    When I open any page for editing it has just a spinning wheel in the middle ofthe Avia Layout builder page and when I click default editor it does nothing. I am using full slider on each page. All pages are working fine , but I can not edit them or create new ones.
    I am Running WP 4.1.1 Czech and all other plugins updated to latest version. I have switched off the czech language plugin, Woocommerce and others but the result is the same… Any workaround to make it running again? By the way in Layerslider WP it says that I have version 5.1.1. installed but the current is 5.3.2 – How to update this
    Thank you
    Martin

    #399500
    This reply has been marked as private.
    #345966

    Topic: Layout Builder Issue

    in forum Enfold
    designred
    Participant

    Good Afternoon,

    My layout is not working properly. I cannot access any pages or portfolio in respect to editing.

    Best,

    -Ben

    #253018
    cryscryb
    Participant

    This has been a really great theme!

    I just installed the latest theme update and am glad I kept a backup of the older release. I have been browsing the forums for an answer to my regarding why images site-wide (inserted using the editor) are now displaying incorrectly. It looks like the theme makers have decided to override the WP resize tool feature. Now any image inserted in the editor is displaying 100% of the parent container width. While I understand and appreciate that this was an effort to increase responsiveness, for some it can create more problems than it solves. The related thread I was reading is located here:

    https://kriesi.at/support/topic/image-function-still-not-working-correctly/

    I would have responded to this thread, however it has been closed. I just want to mention that this was the first thread I’ve encountered where the solution was less than desirable. I know this is not the norm (the solutions offered here are usually exceedingly helpful, positive and prompt). I thought I’d try to shed some new light on why the answers provided may feel unsatisfactory for some:

    – Not being able to use a new feature of the latest WP 3.9 seems counter-intuitive.

    – This may confuse users when they try to help themselves using the WordPress guides/codex, since everywhere they read will tell them how this feature should work (the first thing I did was go to the WordPress support site and RTFM to see what was up).

    – The fix (although minor for an experienced user) requires a core edit that will be wiped out on the next theme update. This might be easy for me, but not for a client. It means I’m going to get a few calls to fix things that I’d rather not have to fix since I encourage clients and friends to purchase this theme.

    – Being required to upload multiple copies of the same image (just to increase or decrease the image size by 10-50 pixels in my client’s case) is neither efficient nor convenient. Yes, users should ideally use images at the correct size whenever possible. However, expecting everyone should know how to use an image editor is not realistic. Expecting them to be able to mass edit and re-upload is also not realistic.

    – There are plenty of reasons to not use the enfold layout builder image insert (such as the axillary fields/tabs provided on Woocommerce product pages where the layout builder is not available). Graphics inserted here can added up to thousands of images on a single e-commerce site suddenly not working correctly (this will be the case on one of my client sites if he chooses to update). Re-sizing all of these images and re-uploading and re-inserting is not a feasible option for him. Neither is editing the core to have it wiped out next update resulting in frustrated calls to the person who recommended this theme to them (me). Editing 2000+ product pages to assign a css style to re-size each image (slightly) as needed is also unfeasible.

    – WordPress changed/modified the WP resize tool for a reason, because users wanted this to be an easy to use feature.

    Anyway, I do very much appreciate all of the hard work that went into this theme. I don’t like to complain about any feature. I usually just open the child/custom CSS in Dreamweaver and make quick edits there, but it won’t work persistently in this case so I thought I’d post my feedback here.

    Can you please consider making this an option that can be turned on/off so users can use the new feature provided in WP without making core edits?

    Thanks,
    Crys :)

    • This topic was modified 11 years, 9 months ago by cryscryb.
    #199887
    karbonato
    Participant

    Hi, I just bought a few days ago the Enfold theme through themeforest and already have a number issues after lots of hours spent customizing the site and trying to fix the issues.

    The test site is at http://www.oriolmorte.com/new/

    The issues are the following:

    1. When browsing through a tablet, the logo it’s not getting smaller as soon as you scroll down like the desktop version on a computer does. I have no idea how to solve this. The responsive version through mobile with the mobile menu is working properly but on tablet it uses the desktop version with this issue.

    2. I did install WPML in order to translate the site to 3 languages (main in english, spanish and catalan). I have already translated mostly of the pages but the Menu editor seems not to work anymore. Any change I do on the Menu builder is ignored by the system and have no chance to sort them on the right order. I can even say that the MegaMenu has stopped working despite it’s properly configured.

    3. Design doubt: How can I create a page like this “http://kriesi.at/themes/enfold/portfolio-item/vimeo-video/&#8221;. I’m specially interested into how to create the grass image with the top layer scrolling at the foreground effect.

    4. Is there any elegant way to disable the shadow or the border horizontal lines located at the header instead of editing staright the css file? I did try to change the Enfold Styling “border colors” to white (like the background) but then the contact form and newsletter subscription looses their border frame.

    Thank you,
    Oriol

    • This topic was modified 12 years, 1 month ago by Dude.
    #134061

    I’ve had this problem as well. Have you tried editing in different browsers? Not all browsers I’ve used for updating my pages/posts have this problem. But I know my preferred browser Opera does.

    I simply save to draft or update a live page and then after the refresh I can return to the text block and start working with the visual editor as normal again.

    A little annoying, but of all the problems I face working within WordPress, this is a minor one.

    Chad

Viewing 21 results - 31 through 51 (of 51 total)