Viewing 30 results - 227,281 through 227,310 (of 244,173 total)
  • Author
    Search Results
  • #231492
    adrianwackernah
    Participant

    Ich gestern ein Produkt angelegt mit Variationen. Preise sind mit 180, 200, 300 und 340 € definiert. Das Produkt zu 340 € ist im Preis auf 170 € reduziert und ist nur einmal vorhanden, alle anderen haben kein Limit. Nun werden die neuen Preise korrekt mit 170-300 € angezeigt, die alten Preise sind durchgestrichen, werden aber fälschlich mit 300-340 € angezeigt. Das ist eine falsche Preisanzeige und kann Probleme bereiten. Wo liegt das Problem und ist es Euch auchbekannt?

    WGM 2.3.1
    WC 2.1.3
    WP 3.8.1
    Enfold 2.5.4

    http://bildmanufaktur-wackernah.de/produkt/nach-dem-sturm/

    #231487

    Topic: Theme Demo content

    in forum Enfold
    shggmbh
    Participant

    Hello,
    is it possible to import the exact same content of the Theme Demo used at the kriesi-website? It doesn´t work via Theme Update in Dashboard Enfold Settings in, there are still missing content of the enfold Theme Demo.
    Another question; the layer slider shows also 2D transitions on my website even though I set the layer slider to only 3D transitions. How can I fix this to show only 3D transitions?
    Thank you for your help!

    #231485

    Hi!

    Thank you for the feedback!

    Cheers!
    Peter

    #231481

    Hi vacshop!

    Yes, Enfold 2.5.4 (the latest version of the theme) is compatible with WC2.1.3.

    Cheers!
    Peter

    #231476

    Hey Yigit,
    thank you it works perfectly :)
    Another little thing i noticed,
    if you try to add a product in the cart you will have the cart icon top right of the monitor. When you go on rollover on the icon it will display the cart with view cart and checkout buttons but they are not on the same line, i guess they need a float:left but i don’t know which class exactly is. Can you help me out about this too? :)

    Thank you

    Alex

    #231475

    Hey!

    You can create multiple portfolios. Just insert the “portfolio element” into a page and select the categories you want to display. You can add several portfolio elements to the same page or to different pages and select different categories for each portfolio element.

    Cheers!
    Peter

    #231471
    This reply has been marked as private.
    #231470

    Thanks for the reply,

    The problem is getting the video to “swap out” in the same player. I want to create kind of a “playlist” of different video that can be played “onclick”. Check out the sample below and let me know what you think. is it possible in enfold?

    http://freshlifechurch.com/teachings/teaching_page.php?id=1747

    #231466

    In reply to: Enfold Showcase

    @Ismael Thanks! Pleasure!


    @RichardOlpin
    Thanks! Will look into. The theme on that side is old. Will have to update it first :)

    #231462

    Hi!

    1) The sort/filter feature is based on js/jquery and does not use php or ajax. You can modify the code in enfold/js/avia.js – search for:

    
    $.fn.avia_iso_sort = function(options)
    

    If you just want to modify the query which displays the grid items you can modify the operator in wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php – search for:

    
    								'tax_query' => array( 	array( 	'taxonomy' 	=> $params['taxonomy'],
    																'field' 	=> 'id',
    																'terms' 	=> $terms,
    																'operator' 	=> 'IN')));
    

    and change the operator parameter

    
    'operator' 	=> 'IN'
    

    to

    
    'operator' 	=> 'AND'
    

    You can also use a filter function in your child theme:

    
    add_filter('avia_post_grid_query', 'avf_custom_post_grid_query');
    function avf_custom_post_grid_query ( $query ) {
    if(!empty($query['tax_query']['operator'])) $query['tax_query']['operator'] = "AND"; 
    return $query;
    }
    

    2) No, it’s currently not possible to pre-select a category by passing a parameter. However I’m sure you can implement it with some hours of work (maybe 2-3 hours including testing).

    Cheers!
    Peter

    #231457

    Hi chrisbailey!

    I didn’t test it but you can try to replace this line in wp-content/themes/enfold/js/shortcodes.js:

    
        		first_slide.css({visibility:'visible', opacity:0}).avia_animate({opacity:1}, function()
        		{
        			var current = $(this).addClass('active-slide');
        		});
    

    with

    
        		first_slide.css({visibility:'visible', opacity:1});
        		var current = $(this).addClass('active-slide');
    

    Best regards,
    Peter

    #231448

    Ok, I’m setting things up to try this, but in the CSS file of the child theme I read the following:

    * PLEASE DO NOT EDIT THIS FILE!
    *
    * This file is only in your themefolder for WordPress to recognize basic theme data like name and version
    * CSS Rules in this file will not be used by the theme.
    * Instead use the custom.css file that is located in your themes /css/ folder to add your styles.
    * You can copy a style rule from any of your css files and paste it in custom.css and
    * it will override the original style. If you just want to add small css snippets you might also
    * want to consider to add it to the designated CSS option field in your themes backend at: Theme Options->Styling
    */

    Does this mean if I copy/paste the css from my edited enfold stylesheet, this css will not be applied?

    My grasp of the steps to follow at the moment:

    – Copy/paste all content from my edited enfold functions.php and style.css to the same files of the child theme
    – rename enfold in the WP editor to enfold_old
    – upload child theme and activate it
    – Upload new enfold version

    Is this correct?

    Hey webfordj!

    Tbh I’m not familiar with Kriesi’s calculation code for the header offset and my solution might not work but you can try to replace this code in wp-content/themes/enfold/js/shortcodes.js

    
    		subtract: '#wpadminbar, #header, #main>.title_container'
        		
    

    with

    
    		subtract: '#wpadminbar'
    
    

    and the slider should cover the entire screen.

    Regards,
    Peter

    #231440

    Hi!

    Maybe you can install the Codestyling plugin on a local test server (i.e. localhost) and translate the theme there? After you translated the text strings click on the “create mo file” to generate the mo file. Then go to the wp-content/themes/enfold/lang folder and upload the mo/po files from the folder to your server. The directory path to the language folder should be the same like on your local hard drive.

    Cheers!
    Peter

    #231434

    Hi!

    Afaik the POST TYPE ORDER plugin hooks into the query and manipulates it. Maybe try to set the “Autosort” option (Settings > Post Type Order) to “ON/Custom” to fix the issue. If this doesn’t help please contact the plugin author. The query of the masonry gallery can be found in wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php

    Regards,
    Peter

    #231433

    Hello Ismael,

    Thank you for your reply. The Zen menu logic unfortunately won’t help me. The wordpress “is user logged in” is close to what I need, but not quite.

    Enfold already has the conditional menu logic, but I need an additional “if” condition. Instead of Enfold doing a if ( is_user_logged_in() ) { ... } and then hiding/showing menu items, I need it to do a if(!Dap_Session::isLoggedIn() ) { and then hide/show certain menu items.

    I wouldn’t even mind replacing the existing Enfold condition of “if user is logged into wordpress” code with the “if user is logged into dap” code, since I’ll never need the “if is logged into wordpress” function.

    In other words, I literally need Enfold to do a custom conditional menu logic check, and not one of the preexisting conditional menu logic checks, with that check being: if(!Dap_Session::isLoggedIn() ) {

    #231431
    vacshop
    Participant

    just looked at the woo commerce plugin update to 2.1.3 and it say its a major update & “dont update till your theme is compatible”??

    so is enfold ok to update for woo commerce??

    wendyhomola
    Participant

    I have Enfold 2.5.3 installed. I have tried linking to a direct mp4 video, a youtube video and one of your approved videos. I only get a black screen with a thinking wheel where the video is suppose to be. My video is less then 16,000 kb. I am looking at it in IE 11 and also Google Chrome. I have emptied all caches. What other suggestions do you have that I can try to get this to work.
    Thanks,
    Wendy

    • This topic was modified 11 years, 11 months ago by wendyhomola.
    #231425
    infinweb
    Participant

    I have a fresh WordPress install (3.8) and I have uploaded the theme to the /wp-content/themes folder. I have tried both the FTP and Admin upload methods. Both methods successfully install the theme without error and it shows up properly within the Appearance/Themes admin selection screen. However, when trying to Preview or Activate the theme I receive a White Screen with the following error

    “The server closed the connection without sending any data.”

    I have validated that my WordPress memory is set properly:
    define(‘WP_MEMORY_LIMIT’, ‘128M’);
    define(‘WP_MAX_MEMORY_LIMIT’, ‘256M’);

    I have turned on debug:
    define( ‘WP_DEBUG’, true );
    define( ‘WP_DEBUG’, false );

    I have tried to download the files again both (full and WordPress only) and different browsers. I have installed other themes successfully before and I am not having any issues with the default WordPress themes.

    Am I missing something?

    #231418

    Topic: Text image overlay

    in forum Enfold
    nick_henri
    Participant

    Hi,

    I’m trying to figure out how to do text image overlays, similar to the 3 boxes shown near the bottom of this page: http://www.sapient.com/en-us/sapientmphasize.html (Our Experience, What We Do, …). I’m trying to replicate a similar look for a site by 3 images on the home page that have text overlayed on top but haven’t been able to figure it out in the Enfold theme. Could someone provide some guidance?

    Thanks,
    Nick

    cyrusis
    Participant

    So my problem is that the website I’m creating doesn’t look great in a responsive setting. I also am not a fan of how Enfold handles the responsive look on smart phones (white space gaps are far too large, etc).

    So I want to keep the website fixed, but unfortunately the fixed setting causes the full-width masonry gallery to glitch up (odd flickers, gaps become uneven, etc). So basically, I want to make the page with the fullwidth masonry responsive, but keep the rest of the website as fixed.

    Here is a link to the website: http://goo.gl/TyXQI8
    It is the portfolio page that I want to keep responsive.

    Any help would be greatly appreciated. :)

    #231400
    andreasgaide
    Participant

    Hey guys – I am freakin out because of the facebook share function! I allready tried 4 different social share plugins, but always the same problem.
    If you click on the share button the pop up opens perfectly, but in the “share window” is only the URL of the blog post visible, and nothing else. No Post Image, no excerpt of the article! Here’s a screenshot…
    enfold-fb-share

    How can we solve this problem?
    This theme is absolutely great, and I can’t believe that such basics will not work and cause issues. We’ve also tried the actual social plugin on another website of us, and it works perfect. So as allready many other users had the same problem, the problem must be caused by the theme or what else could it be?

    Really looking forward to your help! If you want to test it out on our site – please visit: http://internet-solutions-group.de/willkommen-bei-der-isg/

    HawthornTravel
    Participant

    Hello,

    I have observed two problems on the homepage of my website: http://www.hawthorntravel.com.au.

    1/ When loading first, the all length of the homepage is not shown. The testimonials at the bottom are hidden by the footer. It then goes back to normal after a minute or so. Any idea of how to fix that problem? (I have already been deactivating all plugins but is still doesn’t work)

    2/ There is a compatibility problem with MailChimp for WordPress Lite plugin. Indeed, I am not able to edit the homepage if I don’t deactivate the plugin. Even with the last updates of the plugin. Can you consider that in the next Enfold update?

    Thank you very much in advance.
    Charlotte

    #231394

    Hi 2funky!

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

    #top .no_margin.av_one_eighth {
    width: 49.5%;
    }

    Cheers!
    Yigit

    #231390

    In reply to: Frage zu Lizenz

    Hey!

    It is not possible to have a different menu on certaion page. But you can add all of your pages to your menu and using custom CSS, you can remove certain menu items on certain page by adding following code to Quick CSS in Enfold theme options under Styling tab

    .page-id-1122 li#menu-item-2271 { display: none; }

    It will remove menu item with 2271 ID on the page with 1122 ID. You can right click on Chrome or Firefox to inspect elements to find ID’s http://i.imgur.com/HyPTCRg.jpg

    Regards,
    Yigit

    Hey!

    Yes, you should add the code to Quick CSS in Enfold theme options under Styling tab. I have noticed there is dot missing in front of big-preview class. Try adding it, if that does not work, please try adding !important to force it as following

    .postid-5712 .big-preview {
    display: none!important;
    }

    Best regards,
    Yigit

    #231387

    Hey!

    Please add following code to Quick CSS as well

    #top .avia_cart_buttons .button { clear: none !important; }

    Cheers!
    Yigit

    #231386

    Hey juliettereniers!

    You can add all of your pages to your menu and using custom CSS, you can remove certain menu items on certain page by adding following code to Quick CSS in Enfold theme options under Styling tab

    .page-id-1122 li#menu-item-2271 { display: none; }

    It will remove menu item with 2271 ID on the page with 1122 ID. You can right click on Chrome or Firefox to inspect elements to find ID’s http://i.imgur.com/HyPTCRg.jpg

    Cheers!
    Yigit

    #231373

    Hey rosiefuture!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    blockquote { font-size: 26px; }

    Regards,
    Yigit

    #231372

    In reply to: changing theme colours

    Hi Laureninthailand!

    You can give unique ID’s to your color sections and add following code to Quick CSS in Enfold theme options under Styling tab

    #color-section-id { color: white !important; }

    Regards,
    Yigit

Viewing 30 results - 227,281 through 227,310 (of 244,173 total)