Forum Replies Created

Viewing 30 posts - 45,841 through 45,870 (of 66,092 total)
  • Author
    Posts
  • in reply to: Make Add to Cart show even if color swatch isn't selected #496343

    Hey!

    Edit the variable product then go to the Variations panel. Set the Default Form Values. This should work on a default variable product but since you’re using a third party plugin, the settings might change. Please contact the plugin author for more info.

    EDIT: I was able to set a default variation here: https://www.helitakecharge.com/shop/portable-lanterns/2200-classic-lantern/

    Cheers!
    Ismael

    in reply to: page not saving properly #496338

    Hey!

    This is usually due to unclosed html tags. Did you add any html codes inside the page? Make sure that you close the tags properly. Even a simple unclosed paragraph can rain havoc on a long page. Example of an incorrect p tag:

    <p>VERY LONG CONTENT HERE <a href="#">UNCLOSE LINK TAG<a><p>
    

    Also, take note that the greater sign symbol (>) can also mess up a page. If you need to use this symbol, use the html entity character (http://dev.w3.org/html5/html-author/charref). Please check the html code inside the page. Get back to us if the issue persist.

    Cheers!
    Ismael

    in reply to: 502 Bad gateway error #496334

    Hey!

    Alright. I tried to add the shortcode on one of the page in my installation and stops working. Actually, the shortcode breaks this forum thread, that’s why I transferred the shortcode on pastebin. From the looks of the shorcode length, this page is a bit heavy with videos and other content. Is there any way you can shorten the content? What is the url to the actual page?

    Regards,
    Ismael

    in reply to: format in tables is different every second row #496330

    Hi!

    Alright. Please add this in the Quick CSS field to adjust the font color of the alternate rows:

    .main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even) {
        color: #666666;
    }

    Regards,
    Ismael

    in reply to: Widget: WooCommerce Layered Nav not displaying #496328

    Hey!

    If you check the class-wc-widget-layered-nav.php file, you’ll see that the developer added a few conditional functions which limits the display of the widget to certain pages (example: a custom taxonomy archive page or archive page of “product” post type). I think it will help if you contact the plugin developer for more info.

    Best regards,
    Ismael

    in reply to: no preview available #496324

    Hey!

    I checked the Settings > General panel and the WordPress Address (URL) and Site Address (URL) are different. Try to set the same url then log out then login again before testing the “preview” feature.

    Regards,
    Ismael

    in reply to: Orbisius Simple Notice with Enfold #496316

    Hi cormie!

    Thank you for using Enfold.

    You can add this in the Quick CSS field to fix the scrolled header:

    .header-scrolled {
        top: 0;
    }

    Cheers!
    Ismael

    in reply to: Featured image in the left side of title and text. Blog Page #496311

    Hi!

    1.) Add this in the Quick CSS field to change the layout of the blog:

    .template-page .big-preview {
        width: auto;
        position: absolute;
    }
    
    .flex_column .template-blog .post .entry-content-wrapper {
        padding-left: 160px;
    }

    2.) Try to edit the slider image then set the Image Position to “Center Center”.

    Cheers!
    Ismael

    in reply to: Portfolio grid images do not have equal size #496301

    Hi!

    The best solution is to upload images with the same size, orientation and proportion. Inspecting the portfolio items, we can see that most of the images are cropped from images with different sizes and ratios.

    Or at least upload images bigger than the preset thumbnail sizes. One example is the portfolio thumbnail which is 495x400px in dimension. This image, for example doesn’t meet the minimum width and height: http://www.nedmobiel.com/wp-content/uploads/2015/08/Benchmark-tunnels.jpg

    Best regards,
    Ismael

    in reply to: missing revisions, gallery styling #496297

    Hi!

    It is being disabled by the “WP Edit” plugin. Please check the page editor now. http://andesworldtravel.com/wp-admin/post.php?post=4528&action=edit

    Cheers!
    Ismael

    Hey!

    Note that the “Slideshow Image Size” setting in the Easy Slider element will not affect the actual width of the slider. Regardless of the settings, the slider will inherit the width of the parent container so if you place the slider inside a 1/2 column, it will inherit the size of that column. The purpose of the Slideshow Image Size setting is to enable the user to select from the available thumbnail sizes generated by the theme.

    Best regards,
    Ismael

    in reply to: Masonry – shorten titles to xx characters #496284

    Hey!

    There is no available filter for that so you will have to modify the theme core files directly. Edit the config-templatebuilder > avia-shortcodes > masonry_entries.php, look for this code:

    $items .=	"<h3 class='av-masonry-entry-title entry-title' {$markup}>{$the_title}</h3>";
    

    Replace it with:

    $the_title = substr($the_title, 0, 10) . "...";
    						$items .=	"<h3 class='av-masonry-entry-title entry-title' {$markup}>{$the_title}</h3>";

    Best regards,
    Ismael

    in reply to: accordion slider, text only #496278

    Hey!

    We are looking for a screenshot of the final layout that you have in mind. No, unfortunately, we don’t understand it. And regarding your question, I’m sorry but it’s not possible to add a text in place of the accordion image. Maybe, you can find another element in the advance layout builder or try to find a plugin more suited to what you’re trying to achieve.

    Cheers!
    Ismael

    in reply to: Enfold Gallery picture alignment / small issue #496275

    Hi!

    Did you set the columns or row settings to have equal height? Note that if you re-arrange the column elements, it will reset the row settings.

    Cheers!
    Ismael

    in reply to: Vertically centering text depending on image height #496274

    Hi!

    I’m sorry but I don’t think there is an all-in-one solution in what you’re trying to achieve here. The previous solution will require additional css media queries to adjust the property on different screen sizes, in this case, the top margin. It is also more effective if you set the columns to have equal height. Please edit the first 1/2 column in the row then set the Equal Height Columns settings to “Equal height”. Set the vertical alignment to “Middle”.

    Cheers!
    Ismael

    in reply to: Issue with font icons #496266

    Hi!

    The current user doesn’t have enough permission to access the network dashboard, import theme settings or to upload custom icons. Please create a super admin or give us access to the existing one. http://codex.wordpress.org/Super_Admin_Menu

    Best regards,
    Ismael

    in reply to: Can't get images to display with Masonry Blog, etc. #496255

    Hi!

    Not all shortcodes are available when you use the text block’s shortcode wand because those shortcodes or elements can be added by using the advance layout builder.

    Cheers!
    Ismael

    Hi!

    Sorry for the delay. I can see the site now. Try to disable the page’s header transparency then add this in the Quick CSS field to create a gap under the header:

    #main {
        margin-top: 100px;
    }

    Best regards,
    Ismael

    in reply to: Bugs in one page with color sections #496247

    Hi!

    This thread is getting a bit too long. Please create a new thread then we’ll tackle the issue there.

    Best regards,
    Ismael

    in reply to: Hide submenu on mobile #496243

    Hi!

    Try to replace the code with this:

    @media only screen and (max-width: 990px) {
    #header_meta { display: none !important; }
    }

    Hard refresh the page after.

    Cheers!
    Ismael

    in reply to: Hide Button in the Backend disturd image upload #495637

    Hi!

    Please set the user to administrator. We need to check the plugins and the theme editor panel.

    Best regards,
    Ismael

    in reply to: Transparent Menu disappear after last Enfold theme update #495633

    Hey!

    You have this css code in the style.css file which creates a gradient effect:

    #header {
    	position: relative;
    	overflow: hidden;
    	display: block;
    	font-family: Helvetica,Arial,sans-serif;
    	color: #FFFFFF;
    	font-weight: bold;
    	text-shadow: 0 -1px 1px #000000;
    	border:1px solid #2a2a2a;
      	background:#111;
      	color:#fff;
      	font-weight:bold;
      	text-shadow:0 -1px 1px #000;
      	background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#111));
      	background-image:-webkit-linear-gradient(#3c3c3c,#111);
      	background-image:-moz-linear-gradient(#3c3c3c,#111);
      	background-image:-ms-linear-gradient(#3c3c3c,#111);
      	background-image:-o-linear-gradient(#3c3c3c,#111);
      	background-image:linear-gradient(#3c3c3c,#111)
    	
    }

    Remove it then test the page again.

    Best regards,
    Ismael

    in reply to: Custom masonry grid or separate images? #495612

    Hey!

    The example on the site is not a masonry element. It is a code block with a custom script. You can contact codeable to create something similar: http://kriesi.at/contact/customization

    The developer created a container with a class or id attribute called “portfolio-description”. He then applied a custom css animation called “bottom”. This is the css code:

    .portfolio-description {
        position: absolute;
        bottom: -15px;
        display: inline-block;
        width: 100%;
        height: 100%;
        left: 0px;
        opacity: .55;
        transition: bottom 1s, opacity 1s;
        -webkit-transition: bottom .5s, opacity 1s;
    }

    The “-webkit-transition: bottom .5s, opacity 1s;” is the custom css animation. Refer to this link for more info: http://www.w3schools.com/css/css3_animations.asp

    Best regards,
    Ismael

    in reply to: Menu over logo #495611

    Hi!

    You should add the code on Enfold > General Styling > Quick CSS field. All css modifications should go there.

    Regards,
    Ismael

    in reply to: filter sortable portfolio #495610

    Hey!

    Unfortunately, it hasn’t been added yet but you can request for that feature here: https://kriesi.at/support/enfold-feature-requests/

    Note that it might take a while before any specific feature request is added. Or it may not be added at all.

    Regards,
    Ismael

    in reply to: Blog archive layout – sidebar and header #495609

    Hi!

    There’s a 404 error when I visited the page. Please check. Try to remove the extra div tags then add this in the Quick CSS field:

    .archive .sidebar {
        clear: none !important;
        float: left;
        width: 23% !important;
    }

    Adjust the width if necessary.

    Regards,
    Ismael

    in reply to: Shortcode problem when using a mobile theme. #495608

    Hi!

    I’m sorry but this feature is not a priority for now. You can may need to hire a freelance developer if you insist on modifying the theme’s shortcode. Why do you need to use another theme for mobile anyway? The theme is fully responsive already.

    Cheers!
    Ismael

    in reply to: Demo Theme – German translation? #495607

    Hi mauer!

    Thank you for using Enfold.

    You need to use a plugin like the WPML in order to translate the theme.

    Best regards,
    Ismael

    in reply to: Mansonry Issue again #495602

    Hey!

    A css class attribute called “hidden” is being added on the container. It’s probably from a third party plugin so try to deactivate all plugins then hard refresh the page. If it doesn’t work, try to add this in the Quick CSS field:

    .sort_by_cat.hidden {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    Best regards,
    Ismael

    in reply to: Color Section is Taking Over Content Below It #495597

    Hi!

    Please check the page. Let us know if that’s what you wanted: http://newinceptions.com/

    Regards,
    Ismael

Viewing 30 posts - 45,841 through 45,870 (of 66,092 total)