Forum Replies Created
-
AuthorPosts
-
January 18, 2014 at 6:42 pm in reply to: Enfold is not compatible qit Issue with WPML and child theme #211621
Hey!
I’ll close the thread and mark it as “resolved”.
Cheers!
PeterHi spitsdesign!
Glad you solved the problem :)
Best regards,
PeterHey pgamet!
I’m not familiar with the plugin code and I’m not sure if this is possible – however the standard wordpress search query offers some hooks (i.e. http://www.wprecipes.com/how-to-exclude-posts-or-pages-from-search-results ) which help you to modify the search results. I recommend to contact the plugin author – maybe he can give you some hints which help you to improve the search results.
Regards,
PeterJanuary 18, 2014 at 6:31 pm in reply to: Enfold is not compatible qit Issue with WPML and child theme #211612Hi!
There’s no difference. In this case the WPML string translation should work. If it doesn’t work please use the Codestyling plugin or ask the WPML support staff why the string translation doesn’t work. I see no bug or error in our code which would prevent WPML to translate the strings. If the right textdomain (“avia_framework”) is used the string should be translated…
Cheers!
PeterHi!
Please add the code into the functions.php file and post a link to your website.
Best regards,
PeterHey pako69!
Yes, you can insert an icon shortcode in the “menu title” field or description box.
I recommend to use the “Magic wand” icon in the TinyMCE toolbar to generate the icon shortcode, then go to the menu page and copy the shortcode into the title text field and save the menu.
Regards,
PeterJanuary 18, 2014 at 6:21 pm in reply to: Enfold is not compatible qit Issue with WPML and child theme #211602Hi!
I can’r read your code – please use the “code” button to post it…
Best regards,
PeterJanuary 18, 2014 at 6:20 pm in reply to: The “Blog Grid” is not being displayed correctly in version 2.4.5 #211600Hi!
Yes, that’s the normal setting. You can select the front page on the theme option page (Enfold > Theme Options) if necessary.
Cheers!
PeterHey!
Yes, you can insert an icon shortcode in the “menu title” field or description box. I.e. use the “Magic wand” icon in the TinyMce toolbar to generate the icon shortcode.
Regards,
PeterJanuary 18, 2014 at 5:57 pm in reply to: Enfold is not compatible qit Issue with WPML and child theme #211585Hi pako69!
Use Codestyling ( http://wordpress.org/plugins/codestyling-localization/ ) and translate the po/mo file. Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to search for all text strings. Then 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).
If you want to add some custom text to the translation file wrap it into a __() function like
__(‘My text’,'avia_framework’)
If you want to register a new text string with WPML see: http://wpml.org/faq/getting-string-translation-to-work/
Best regards,
PeterHi!
I fixed it on your website – see https://kriesi.at/support/topic/bbpress-and-full-width-masonry/#post-211580
Cheers!
PeterHey!
Please insert following code into the functions.php file
add_filter('avf_registered_post_type_array', 'avia_remove_bbpress_post_type_options', 10, 2); function avia_remove_bbpress_post_type_options($post_type_option, $args) { if(!empty($post_type_option)) { foreach($post_type_option as $key => $post_type) { if($post_type == 'forum' || $post_type == 'topic' || $post_type == 'reply') { unset($post_type_option[$key]); } } } return $post_type_option; } add_filter('avia_masonry_entries_query', 'avia_remove_bbpress_post_type_from_query', 10, 2); add_filter('avia_post_grid_query', 'avia_remove_bbpress_post_type_from_query', 10, 2); add_filter('avia_post_slide_query', 'avia_remove_bbpress_post_type_from_query', 10, 2); add_filter('avia_blog_post_query', 'avia_remove_bbpress_post_type_from_query', 10, 2); function avia_remove_bbpress_post_type_from_query($query, $params) { if(!empty($query['post_type']) && is_array($query['post_type'])) { foreach($query['post_type'] as $key => $post_type) { if($post_type == 'forum' || $post_type == 'topic' || $post_type == 'reply') { unset($query['post_type'][$key]); } } } return $query; }
We’ll include this code in the next theme update.
Cheers!
PeterJanuary 18, 2014 at 5:05 pm in reply to: My woocommerce sidebars disapeared after I install WPML and now I'm lost! #211575Hi!
The store page does not support a custom sidebar because you can use the “Shop Overview Page” widget ares to add widget to the shop page. If you really want to to use a custom sidebar on the shop page open up enfold/sidebar.php and replace
if(!empty($the_id) && is_singular()) { $custom_sidebar = get_post_meta($the_id, 'sidebar', true); }
with
if(!empty($the_id) && is_singular()) { $custom_sidebar = get_post_meta($the_id, 'sidebar', true); } if(is_shop()) { $the_id = woocommerce_get_page_id( 'shop' ); if(!empty($the_id)) $custom_sidebar = get_post_meta($the_id, 'sidebar', true); }
Regards,
PeterHey!
Maybe a child theme template file (php file) overwrites the parent theme file(s)? If yes you need to update the child theme file(s) with the new, updated parent theme code.
Best regards,
PeterHey fab!
WordPress doesn’t know which “portfolio page” is the parent page of a “single portfolio entry” because the portfolio grid is actually just a shortcode which is embedded into the content of a page. Kriesi found a workaround and Enfold stores the id of the parent portfolio/grid page into a session.
I.e. if the user first views this portfolio grid page ( http://www.sfccars.com/sold-cars/ ) the server will save the page id into the session and as soon as the user views the single portfolio entry (i.e. http://www.sfccars.com/portfolio-item/1966-triumph-tr4-a/ ) Enfold uses the session data and the saved page id to build the breadcrumb. If the user accesses the portfolio entry from another portfolio page: http://www.sfccars.com/inventory/ it will save another page id and the breadcrumb links will be different.
If you don’t want to show the portfolio grid page in the breadcrumb but just the portfolio categories of the current entry you can use the code I posted here https://kriesi.at/support/topic/breadcrumbs-with-portfolio/ – by going this way the breadcrumbs will always have the same structure but you can’t show the portfolio grid pages in the breadcrumb.
Cheers!
PeterHi adrianwackernah!
Bitte probiere die Template Dateien von hier: https://kriesi.at/support/topic/woothemes-sensei-plugin/ in den Theme Ordner zu kopieren.
Regards,
PeterJanuary 17, 2014 at 11:04 am in reply to: Broken permalinks when switching from standard to post name structure #211154Hi!
I’m not familiar with Xili-Language. Your best bet is to contact the plugin author – maybe he can provide an alternative solution. Alternatively you can use WPML to translate the website.
Regards,
PeterJanuary 17, 2014 at 11:01 am in reply to: My woocommerce sidebars disapeared after I install WPML and now I'm lost! #211151Hi!
I’m not sure if this is a theme related issue. Please switch to the TwentyThirteen theme (default wordpress theme) and check if the problems persists. If yes please contact the WPML support staff and ask them to look into it. If the theme change solves the issue please create us an admin account and we’ll look into it.
Cheers!
PeterHey!
Ok, ich werde den Thread einmal schließen. Wenn der Fehler dann noch immer auftritt, leite ich es an Kriesi weiter.
Regards,
PeterHi!
Eine Lizenzübertragung auf einen andere Person ist auch nicht über uns möglich. Dbzgl bitte ebenfalls Envato/Themeforest kontaktieren.
Best regards,
PeterHey!
Wir können keine Rechnungen ausstellen, da wir nicht Vertragspartner sind. Solche Anfragen müssen direkt an Envato/Themeforest gerichtet werden und dann kann man nur hoffen, dass die australischen Rechnungen den europäischen Standard entsprechen.
Cheers!
PeterHi aovivo!
1) You can try to increase the animation time – open up wp-content/themes/enfold/js/shortcodes.js and search for
$.fn.avia_sc_toggle = function(options)
below this line you’ll some occurrences of
slideUp(200
and
slideDown(200
You can replace 200 with another value – it determines the animation time in ms – i.e. 200ms are 0,2 seconds.
2) You can’t remove the scroll bar on the right side because the website must be scroll able – especially for users with smaller screens. The only solution would be to make the default content (with closed toggles) longer – then the browser will show the scroll bar as soon as the user opens the page in the browser and the content won’t shift when he clicks on a toggle.
Cheers!
PeterJanuary 17, 2014 at 9:27 am in reply to: Broken permalinks when switching from standard to post name structure #211119Hey!
See http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/
Best regards,
PeterHey!
It seems like the “kitchenbug” plugin causes the issue. It adds following css code to the website
.clearfix { display: inline-block; }
which breaks the map widget. You’ve two options
1) Remove the kitchenbug plugin
2) Insert following code into the quick css field to overwrite the kitchenbug code
#top #wrap_all .clearfix { display: block; }
Regards,
PeterHi!
Maybe I’m wrong (I don’t know his plugin code very well) but I didn’t find any search expressions which work with imaginefs.com….
Another related expression iswp_oembed_add_provider( '<code>https?:\/\/(.+)?(wistia\.com|wi\.st)\/(medias|embed)\/.*</code>', 'http://fast.wistia.com/oembed', true );
but if I read it right it will work with http://XXX.wistia.com/medias/ and not with http://video.imaginefs.com/medias/ but let’s wait for Yoast’s answer….
Regards,
PeterHey!
After checking Yoast’s code I think
http://video.imaginefs.com/medias/tlygb5hk4i?embedType=iframe&videoWidth=640
will not work (at least for now) because Yoast simply doesn’t support the url. If you check the plugin file code (video-seo.php) you’ll find following line
if ( in_array( $video['type'], array( 'youtube', 'vimeo', 'blip.tv', 'viddler', 'wistia' ) ) )
and it lists all search expressions. Your url doesn’t contain ‘youtube’, ‘vimeo’, ‘blip.tv’, ‘viddler’, ‘wistia’ and thus Yoast won’t recognize it….
Regards,
PeterThis reply has been marked as private.Hey NP!
Please try to increase the allocated memory http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP and insert
define( 'WP_MEMORY_LIMIT', '128M' );
into your wp-config.php
Regards,
PeterHey!
What happens if you try
#top .gform_body input[type="text"].datepicker { width: 20% !important; }
Cheers!
PeterHi!
Please go to Settings > Permalinks and click the save button. This should force wordpress to flush the permalink rules.
Best regards,
Peter -
AuthorPosts