Forum Replies Created

Viewing 30 posts - 12,691 through 12,720 (of 14,834 total)
  • Author
    Posts
  • in reply to: How to create a nice Pricelist with tables #367541

    Hey!

    First off make sure the table is set to display as a pricing table and not as data. You can then change the middle column type to “highlight” and one of your rows to “pricing” to get it to display like in the demo.

    Regards,
    Elliott

    in reply to: Custom shortcode in Special Heading/Heading Text #367539

    Hey Lumato!

    Yes you can add it to the functions.php file. If your trying to edit one of our existing shortcodes then download our starter child theme, http://kriesi.at/documentation/enfold/downloads/, and then create a folder called /shortcodes/ in the child theme folder. You can then copy the shortcode files from the parent theme and add them into the child theme and edit them.

    Cheers!
    Elliott

    in reply to: Video autorotation isn't working as expected #367536

    Hi mako20!

    Are you using the LayerSlider? Go ahead and send us a WordPress login and we’ll take a look.

    Regards,
    Elliott

    in reply to: Open Sans Light and Extrabold not working in some IE versions #367534

    Hey!

    I noticed your not getting the error anymore and the fonts seem to be loading fine. Did you get this fixed?

    This is what I’m seeing in IE11 so it appears to be working.

    Best regards,
    Elliott

    Hi happyseed!

    Would a CSS fix be ok for hiding it?

    .widget_tab_comments {
        display: none !important;
    }

    And try changing the function to this.

    add_filter('avf_title_args', 'avf_blog_title', 10, 2);
    function avf_blog_title($args, $id) {
    	if ( !is_404() ) { $args['title'] = 'Blog Grid'; }
    	return $args;
    }

    Best regards,
    Elliott

    in reply to: Animated numbers not animating on Internet Explorer 8 #367521

    Hey!

    Hmm, I’m on IE11 and I’m using the developer tools to emulate IE8 and they appear to be working there. What operating system are you using? Javascript is enabled correct?

    What happens when you re-install IE?

    Regards,
    Elliott

    in reply to: Video not looping #367520

    Hey webpress!

    It looks like we need a password to view the page. Be sure to deactivate all plugins while testing.

    Regards,
    Elliott

    in reply to: events calendar #367519

    Hi ftt123!

    We recommend the events calendar, http://tri.be/shop/wordpress-events-calendar/.

    You can translate it manually or with WPML.

    Cheers!
    Elliott

    in reply to: Transparency after scrolling #367518

    Hey Guenter!

    Try adding this to your custom CSS.

    .header-scrolled .header_bg {
        opacity: 0.4 !important;
    }

    Best regards,
    Elliott

    in reply to: Hotspots feature problem #367517

    Hey Martin!

    It looks like your using Enfold 2.9.2. Go ahead and update to the latest version, 3.0.4, and then deactivate all plugins.

    If your still seeing the problem after clearing your browser cache then send us a WordPress login and we’ll take a closer look.

    Best regards,
    Elliott

    in reply to: iconfont in Enfold shows different signs in different browsers #367516

    Hi benteasbjorn!

    It looks like all of your content is loading from a different URL that your domain. I found this post which may help, https://kriesi.at/support/topic/icons-in-icon-box-are-chinese-characters/.

    Here is what I am seeing in firebug. (I removed the URL)

    Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at [insert different domain]/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=3. This can be fixed by moving the resource to the same domain or enabling CORS.
    

    I’m not really sure if this is a good fix or not but you can try adding this to your .htaccess file.

    Header set Access-Control-Allow-Origin "*"
    

    Since your server is on linux it’s probably using Apache, http://enable-cors.org/server_apache.html.

    Regards,
    Elliott

    in reply to: Disable stick header #367513

    Hi!

    I don’t see an easy way of doing that. You would have to edit the theme javascript inside /enfold/js/avia.js and then do a lot of various checks so it only happens on that page and it would take a lot of time and code.

    Instead I recommend just disabling the header for that page and then insert your logo image and links inside the caption description of the slide.

    It accepts HTML so you could do something like this.

    <img src = "URL to your logo" />
    <ul>
    <li><a href = "#">Menu</a></li>
    <li><a href = "#">Contact</a></li>
    <li><a href = "#">etc</a></li>
    </ul>

    You would still need to do some CSS styling on the links though.

    Best regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: Google Adwords remarketing code, Add to all pages #367509

    Hi!

    I’ve never tested it so you can try but if your getting errors then do what is suggested in my last post.

    Best regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: Custom Template for dsidxpress #367507

    Hi tdproperty!

    So it looks like you updated your post twice and everything seems to be working fine now? If you have any other questions then let us know.

    Regards,
    Elliott

    in reply to: Fix mobile landscape view on blog page #367506

    Hey!

    Where did you add the code? I didn’t see it anywhere so I added it to your Quick CSS field and it’s working fine. Try clearing your browser cache.

    Cheers!
    Elliott

    in reply to: Website doesn't display properly on iPad mini #367504

    Hi 1lizcollins!

    1. Add this to your custom CSS.

    @media only screen and (max-width: 1167px) {
    #advanced_menu_toggle {
        display: block !important;
    }
    nav.main_menu {
        display: none !important;
    }
    }

    For the icon issues I’m not sure what a good workaround for that would be. Would you like to hide the icons? I think it should display fine if you have them floating to the left instead of right.

    Regards,
    Elliott

    in reply to: Grid row breaks adaptive layout at small resolution #367497

    Hey!

    Hmm, your grid.css file looks weird. Line 92 should look like this.

    @media only screen and (max-width: 767px) {
    

    But your file looks like this.

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    

    Try completely deleting Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest. This will ensure you have all of the updated files.

    Best regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: activating config-woocommerce\config.php for a child theme #367486

    Hey Mariusz!

    I think that function is only relevant to the file it’s used in so it wouldn’t work in a child theme. What are you trying to do?

    Best regards,
    Elliott

    in reply to: Spambot Protection #367481

    Hi Siracher!

    I don’t know of any that I can recommend. You could try to do something in javascript such as this.

    add_action( 'wp_footer', 'enfold_customization_reverse_email' );
    function enfold_customization_reverse_email() {
    ?>
    <script type = "text/javascript">
    jQuery(document).ready(function(){
    function reverse(s){
        return s.split("").reverse().join("");
    }
    jQuery('.avia-team-icon').attr("href", function(){ return reverse(jQuery(this).attr("href")) } );
    });
    </script>
    <?php
    }

    And then flip your email address for the icon. For example mailto: (Email address hidden if logged out) would then have to be input like this, moc.tset@tset:otliam, though I’m not sure how effective that would be.

    Best regards,
    Elliott

    in reply to: Javascript problem #367471

    Hi smbyjoe!

    Your getting an error.

    ReferenceError: CreateFrame is not defined
    	
    
    CreateFrame('100%', '500px', 'catalog', 'carpet');

    Where is the function defined? If it’s in the iframe then see here, http://stackoverflow.com/questions/251420/invoking-javascript-code-in-an-iframe-from-the-parent-page.

    Best regards,
    Elliott

    in reply to: Blog page display is wrong #367468

    Hey!

    You do not have any featured images set to your posts. If your wanting the images inside your post content to display on the blog then you’ll need to display the full blog posts instead of excerpts.

    Regards,
    Elliott

    in reply to: Icon List and icon not working #367448

    Hi gregalado!

    The problem is from some custom CSS your using.

    body {
        color: #444;
        font-family: "Open Sans",sans-serif;
        font-size: 13px;
        line-height: 1.4em;
        min-width: 600px;
    }

    Remove the min-width line.

    Best regards,
    Elliott

    in reply to: Arrow to next section not appearing #367436

    Hi Steven_Haines!

    That arrow is designed to scroll to the next section. The reason it’s not going to the section with the finger is because you have some content above it, “learn new techniques, etc etc”.

    You could try changing line 505 in /enfold/config-templatebuilder/avia-shortcodes/slideshow.php so it links to a different element.

    $html .= "<a href='#next-section' title='' class='scroll-down-link' ". av_icon_string( 'scrolldown' ). "></a>";
    

    But then you would need to add this element to every page where your using the slideshow.

    Best regards,
    Elliott

    in reply to: Iframe in responsive page #367434

    Hi!

    I don’t see an easy way of doing that unfortunately. What I would do is instead of setting a width of 500px on the content in your iframe I would change it to 100% so it’s responsive. You can set a max-width to it as well so it looks correct on bigger screens.

    Cheers!
    Elliott

    in reply to: Blog and Portfolio url structures #367426

    Hi!

    Sorry, I forgot to tell you to refresh your permalinks in Dashboard > Settings > Permalinks after doing the edit.

    Cheers!
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: Custom Social Bar Icons (Replace/Add) [Enfold] #367424

    Hi!

    Check to make sure your font file is still uploaded in Dashboard > Enfold > Import/Export and then send us a WordPress login so we can take a look.

    Also be sure to deactivate all plugins while testing.

    Best regards,
    Elliott

    in reply to: Is there a way to hide a shortcode in a post? #367423

    Hi mtmfx!

    Try adding this to the bottom of your functions.php file and let us know if that works.

    add_filter( 'the_content', 'enfold_customization_stripfeedcodes' );
    function enfold_customization_stripfeedcodes( $content ) {
    	if ( is_feed() ) {
    		return strip_shortcodes( $content );
    	} else { return $content; }
    }

    Regards,
    Elliott

    Hey!

    It’s a common problem with caching plugins and themes. Sometimes a script gets minified that should not be and it will cause errors. Turning off the minify options in the plugin fixes it.

    Cheers!
    Elliott

    in reply to: Custom URL for Pages #367411

    Hey tdproperty!

    When you edit your page you can change the permalink to anything you want but you cannot add an existing category in front of the page name because WordPress will then think it’s a post. Other slashes in front of it will also confuse WordPress into thinking it’s a child page so those would not work either.

    This really isn’t a theme issue though so I would post on the WordPress support forums for more info, https://wordpress.org/support/.

    Best regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: Use heading font "PT Sans" as a body text font #367409

    Hey tdproperty!

    If your not already using it in your theme options then add this to your custom CSS.

    @font-face {
      font-family: 'PT Sans';
      font-style: normal;
      font-weight: 400;
      src: local('PT Sans'), local('PTSans-Regular'), url(https://fonts.gstatic.com/s/ptsans/v8/LKf8nhXsWg5ybwEGXk8UBQ.woff) format('woff');
    }

    And then add this as well if you want to change the paragraphs.

    p { font-family: 'PT Sans' !important; }
    

    If your trying to change a specific element then let us know which one and we’ll give you the CSS required.

    Cheers!
    Elliott

Viewing 30 posts - 12,691 through 12,720 (of 14,834 total)