Forum Replies Created
-
AuthorPosts
-
February 12, 2014 at 8:31 am in reply to: A wish: in WC ckeckout comment field below order details #222587
Hi!
Our theme does not change the appearance of the editor screen. Please contact the WooCommerce support team.
Best regards,
PeterHey!
Nein, diese Option wurde scheinbar entfernt. Wenn ich zu einem anderen Theme wechsle (i.e. TwentyThirteen) dann ist diese Option auch weg. Ich werde mit Kriesi über mögliche Lösungsansätze reden (zB Option manuell hinzufügen, etc.).
Best regards,
PeterHi!
This is a bug of the WPML plugin. I posted a fix in this thread: https://kriesi.at/support/topic/the-post-still-shows-8-comments-when-there-are-none/#post-178386
In /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php replace
$commentCount = get_comments_number($the_id);
with
//$commentCount = get_comments_number($the_id); $commentCount = $entry->comment_count;
and the comment counter should work.
Best regards,
PeterHi mwolfert!
No, you don’t need to purchase a license for the dev server/website.
Cheers!
PeterHi!
I just noticed that the “errors” are just warnings which are triggered by the WPML BuddyPress Multilingual plugin. You should be able to get rid of them by deactivating the debug mode (see: http://codex.wordpress.org/Editing_wp-config.php#Debug – the “WP_DEBUG” constant in wp-config.php must be set to false) and if this doesn’t help try to insert
error_reporting(0);
at the very bottom of functions.php.
The code will suppress all warnings and won’t affect the buddypress or any other third party plugin.
Regards,
PeterHey!
Great :)
Regards,
PeterHi!
I’ll tested WC2.1 with Enfold yesterday and I didn’t find any bugs yet. I found two small styling issues which you can fix with
.woocommerce-account dt, .customer_details dt { width: auto; margin-right: 5px; } dl.customer_details{ margin-bottom: 20px; } #top .my_account_orders a.button { margin-bottom: 5px; } #top.woocommerce-checkout #payment h3{ padding: 1em 1em 0; }
This is not an official “green light” yet but I’m pretty sure we won’t encounter any major incompatibility issues with Enfold.
Regards,
PeterHey toddgeist!
Try:
function fix_ssl_upload_url( $url ) { if ( is_ssl() && !is_admin() ) $url = str_replace( 'http://', 'https://', $url ); return $url; } add_filter( 'upload_dir', 'fix_ssl_upload_url' );
Best regards,
PeterHey ggerber!
The multilanguage plugin is not included but you can purchase it here: WPML.
If you just want to translate the theme to another language (without language switcher, translated post/pages, etc.) I suggest to use the free Codestyling plugin to translate the theme. Install the plugin ( http://wordpress.org/plugins/codestyling-localization/ ), go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and select your language and click the “create po-file” button. Click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).
Best regards,
PeterHey!
Btw – you can change the size of the images with css – use this code
.av-masonry-gallery .av-masonry-entry { width: 24.90%; }
to change the width. You can set use any custom percentage value – by default it’s set to 24,9%.
Cheers!
PeterHi Tali!
The masonry gallery styling depends on the screen width and the image aspect ratios. I.e. the demo website: http://kriesi.at/themes/enfold/shortcodes/masonry-gallery/ shows a grid with 6 columns ( http://www.clipular.com/c/6576207617327104.png?k=FsV7DtL7E6dPkHWlnFZJhrekGd8 ). If I shrink the browser window the number of columns will decrease. Make sure that the “Flexible Masonry: All images get the same width but are displayed with their original height and width ratio” option is selected – otherwise the masonry script may require more space per image.
Cheers!
PeterHi w3developing!
I guess you found a solution (see topic title) :)
Best regards,
PeterHey!
Das ist ein normaler “small” html Tag
<small>per month</small>
Cheers!
PeterHey!
Please try following code
add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { if ($args['title'] == 'Blog – Latest News') { $args['title'] = "Annie's News and Views"; $args['link'] = get_permalink($id); } return $args; }
Best regards,
PeterHi Viterbi!
1) The Single Author Full Width layout is a combination of the “Single Author Small” option and the page layout “fullwidth” (instead of the left/right sidebar layout). You can select the page layout on the page editor page on the right sidebar.
2) The “Masonry” blog element is not available for the default blog template yet but you can add it to an advanced layout. Go to a page where you want to add the masonry blog (note that you must not select this page as blog page) and switch to the “Advanced Layout Editor”. Then select “Content Elements > Fullwidth Masonry” and add this element to your template.
Best regards,
PeterFebruary 11, 2014 at 10:44 am in reply to: we activate bbPress, our sidebars are completely empty #222103Hi webshop-factory!
Yes, unfortunately this is a wordpress limitation. See https://kriesi.at/support/topic/toppanel-plugin-messed-up-widgets-widget-areas-in-enfold/
Basically the issue is caused by the changing widget area ids and youou just need to reconfigure the widget areas. You can use the “Inactive Widget” section to temporarily store the widgets and to rearrange them before/after you activate a plugin.
Cheers!
PeterHey!
You can still use the Advanced editor. Just add a “Textblock” element to the advanced layout and then embed the Contact form 7 or Formidable shortcode into the textblock content.
Best regards,
PeterHey skewzy!
I don’t know any of these services and I can’t recommend a specific host. I know that Joost (developer of Yoast SEO) recommends WPE**ngine and he also uses it for one of his websites: https://yoast.com/yoast-acquires-wpforce-com/
I’m pretty sure he wouldn’t recommend it if it’s not a good choice…Cheers!
PeterHi!
Please try to rename the image http://prolinpro.prlncms.com/wp-content/proimages/safe-60%–01.gif gives me a 400 – Bad request error. Use an image name without any special signs like: safe01.gif
Regards,
PeterFebruary 11, 2014 at 9:45 am in reply to: Setting Blog to Multi-Author, Big Preview Blog with Title, Excerpt & Read More #222085Hey!
1) Please make sure your allocated memory is set to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP and insert the code at the very bottom (last line) of functions.php.
2) If it still doesn’t work please create me an admin account and post the login credentials as private reply.
Regards,
PeterHi!
Tbh I’m not sure but you can try to place the html code into an “Easy Slider” caption field. If it doesn’t work I recommend to hire a freelancer who can help you to implement the “hatchShow” javascript code directly into a slider script.
Best regards,
PeterHi!
The fullscreen slider will always cover the entire screen and scroll with the content. I think you can achieve the “fixed” image effect with a color section though. Insert it at the top of the page, set an image as background image and select “Background Attachment” – “Fixed”. Since Enfold 2.4.5 you can also set a minimum height for the color section (i.e. 50% of the screen height or 100%).
Best regards,
PeterFebruary 11, 2014 at 9:16 am in reply to: Internet Explorer 10 and under compatibility issue #222077Hi!
I reported it as a bug to Kriesi. I noticed that the “Fullscreen Slider” element at the top causes the issue. If I remove it the page starts to work with IE8 too.
Best regards,
PeterFebruary 11, 2014 at 8:49 am in reply to: Full screen slideshow issues – looks bad on mobiles #222074Hey graeme_nash!
Can you please post a link to your website? I couldn’t reproduce the issue on my test server and on the demo page: http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/
Regards,
PeterHi!
Please create me an admin account and post the login credentials as private reply. I need to check why the code doesn’t work for you.
Best regards,
PeterHey!
The warning message tells you that the server tried to write the session data but it failed because it couldn’t open the temporary session folder (/var/lib/php-cgi/session/sess_r8ilpo3ju8dbh8pbqe7sc9dd74, O_RDWR) to write the session data. Please ask your hoster to fix the folder/session permissions. Without sessions you can’t use the theme properly…
For more information please read http://stackoverflow.com/questions/5104065/php-session-handling-errors and http://www.vikasing.com/2013/02/pita-6-php-warning-unknown.html
Cheers!
PeterHey runekjensen!
The progress bar does not display any units (i.e. percentage or currency) but it will change the length of the progress bar based on the percentage value you insert into the option field (i.e.: http://kriesi.at/themes/enfold/shortcodes/progressbars/ ). If you want to calculate the percentage on your own you can use the progress bar shortcode without doing any code customization. However note it does not support automatic calculations – i.e. it won’t calculate the percentage based on the amount raised to far, etc.
If you need such a calculation I recommend to try third party plugins like: http://wordpress.org/plugins/personal-fundraiser/ which can be used for professional fundraising campaigns.
Cheers!
PeterHi!
Great :)
Regards,
PeterHi aliquill!
The fullwidth slider will always stretch the image to 100% width and the height may increase if the screen resolution is higher than the image width. Kriesi uses images with a resolution of 1500px x 430px on his demo website: http://kriesi.at/themes/enfold/shortcodes/easy-slider/ – this should also be a good starting point for your images but you can select a different image size on the option page: http://www.clipular.com/c/6199712663207936.png?k=z3LVqIyzGAvZkbUFp9HSNxvmjwA
Regards,
PeterHi yogaboy!
Great, thank you. I’ll add this fix to the theme code.
Regards,
Peter -
AuthorPosts