Forum Replies Created
-
AuthorPosts
-
Hi!
I’ll leave this thread open (for follow up questions).
Cheers!
PeterHi!
The permalink issue is connected to the portfolio slug rewrite and a few users experienced issues with it. With the new permalink rewrite method we have no reason to keep the flush_rewrite_rules() function or to use a custom function to register new permalinks. Currently only Enfold supports the new permalink rewrite method and it doesn’t make sense to test it with Propulsion.
Cheers!
PeterJanuary 14, 2014 at 4:44 pm in reply to: Inserting simple Javascript code onto different pages #209520Hey!
I can’t answer the first question (I don’t know how you can change or set up the pin) but yes, you can overwrite the parent theme file with the child theme. Just copy the header.php into your child theme folder and modify the file. Then save it and the child theme file should overwrite the parent theme file.
Best regards,
PeterHi silky2013!
Yes, older Enfold theme versions do not support the masonry gallery. Please update your theme to 2.4.5 and the masonry element should be available.
Cheers!
PeterJanuary 14, 2014 at 3:55 pm in reply to: Google Maps zusammen mit Enfold und Event Kalender Plugin #209479Hi!
Versuche einmal folgenden Code
add_filter( 'avia_google_maps_widget_load_api', 'avia_remove_widget_script', 10, 2); function avia_remove_widget_script($load, $config) { if(get_query_var('post_type') == 'tribe_events') return false; return true; }
Best regards,
PeterHey ecesara!
Thank you for the hint :)
Regards,
PeterHi Raju!
1) Please create me an admin account and post the login credentials as private reply – I’ll look into it.
2) Maybe you didn’t translate the 404 error text? Please use this plugin: http://wordpress.org/plugins/codestyling-localization/
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).3) It would surprise me if the theme causes this issue. Please switch to the TwentyThirteen theme and check what happens when the validation fails.
Regards,
PeterJanuary 14, 2014 at 1:15 pm in reply to: Remove comments and author name (Eliminar comentarios y nombre de autor) #209436Hey koballo!
1) Yes, open up /wp-content/themes/enfold/includes/loop-index.php and delete
echo '<span class="blog-author minor-meta">'; echo '<strong>'.__('Author','avia_framework').': </strong><span>'; the_author_posts_link(); echo '</span></span>';
2) Open up /wp-content/themes/enfold/single.php and delete
//wordpress function that loads the comments template "comments.php" comments_template( '/includes/comments.php');
Regards,
PeterHey n4n1!
1) Kriesi uses following css code
#bbp-search-form #bbp_search { width: 75%; margin: 0; padding: 12px 12px; } #bbp-search-form #bbp_search_submit { width: 25%; padding: 14px 22px; top: -1px; position: relative; }
for his search form ( https://kriesi.at/support/ ).
2) Afaik bbpress creates a forum page which you can edit like a standard page (Pages > All Pages). If you can’t find such a page you can create a custom page and then use one of the shortcodes here: http://codex.bbpress.org/shortcodes/ to embed the forum into your content.
Regards,
PeterHi!
I don’t know a plugin which generates such a portfolio grid. Enfold comes with a similar portfolio effect: http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/ but obviously it’s not an exact copy of the pixelentity theme :)
Best regards,
PeterHi!
Tbh I wouldn’t call the information “junk information”. Photographers or other users might want to show or use this information in some way and other users can hide it.
Regards,
PeterJanuary 14, 2014 at 12:53 pm in reply to: Inserting simple Javascript code onto different pages #209423Hey!
Open up header.php and replace
<div id='wrap_all'>
with
<script type='text/javascript' src='//assets.pinterest.com/js/pinit.js' data-pin-hover='true'></script> <div id='wrap_all'>
Cheers!
PeterHey!
Please try following fix – open up wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php and replace
$data = json_decode( $request['body'] );
with
if(is_wp_error($data)) return false; $data = json_decode( $request['body'] );
We’ll add this if check to the next theme update if the fix works for you.
Regards,
PeterHi Jason!
Our tabs script does not support multiple tab levels and you can’t add tabs to the tab content. You can try to install a third party tab shortcode plugin and then insert the third party tab code into our tab template builder element. I can’t recommend a certain plugin and it might not work but it’s worth a try.
Regards,
PeterJanuary 14, 2014 at 12:14 pm in reply to: Double links to my home page in the Enfold BreadCrumbs #209412Hey!
Insert following code into the functions.php file to remove the link from the breadcrumb
if(!function_exists('avia_modify_blog_breadcrumb')) { function avia_modify_blog_breadcrumb($trail) { foreach($trail as $key => $data) { $search = 'Wildlife & Nature Photography Workshops'; if(strpos($data, $search) !== false) { unset($trail[$key]); } } return $trail; } add_filter('avia_breadcrumbs_trail','avia_modify_blog_breadcrumb'); }
Cheers!
PeterJanuary 14, 2014 at 12:07 pm in reply to: Google Maps zusammen mit Enfold und Event Kalender Plugin #209411Hi adrianwackernah!
Bitte füge folgenden Code in die functions.php ein, um das Problem zu beheben
add_filter('tribe_get_embedded_map','avia_deactivate_google_api',10,1); function avia_deactivate_google_api($google_map){ global $avia_config; if(!empty($google_map)) $avia_config['g_maps_widget_active'] = 1; return $google_map; }
Wenn der nicht funktionieren sollte, kannst du auch die JS datei unseres Widgets komplett deaktivieren
add_filter( 'avia_google_maps_widget_load_api', 'avia_remove_widget_script', 10, 2); function avia_remove_widget_script($load, $config) { return false; }
Regards,
PeterJanuary 14, 2014 at 11:59 am in reply to: Children of a single parent page pulling 404 errors #209407Hey!
The reason is that a post type is called “Resources” and I guess this post type also uses the slug “resources”. The page must not use the same permalink/slug as the post type and I renamed it to “resources-page” ( http://thinc.uga.edu/wp-admin/post.php?post=4128&action=edit&message=1 ). You can choose another text for the page slug – however you just can’t use resources because this slug is reserved for the posts of the resource post type (i.e. http://thinc.uga.edu/resources/boot-camp-in-entrepreneurial-leadership-in-the-arts-and-sciences/ ).
Best regards,
PeterJanuary 14, 2014 at 11:53 am in reply to: Portfolio items sorting not visible in WPML translated page. #209399Hi!
Strange – we’ll see if more users report the issue and then check our code for bugs. Thanks for the report!
Best regards,
PeterHi!
Please try to wrap your code into the embed shortcode like
[embed] http://video.imaginefs.com/medias/jwtmn2t7w3?embedType=iframe&videoWidth=640 [/embed]
and use the text editor instead of the html editor: http://www.clipular.com/c/6602341889343488.png?k=_uEF1MWdRNxoC3i03f5vf69HqjA
I tested this method with a vimeo video
[embed] https://vimeo.com/channels/aviathemes/67209750 [/embed]
and it worked for me.
Regards,
PeterHi!
You can add the code into your child theme functions.php file which will not be affected by the parent theme update.
Cheers!
PeterHi!
I’m not sure but it can be even if you use “just” 88% of the memory because it’s an average value and does not take care of “peaks”. You can try to activate the debug mode: http://codex.wordpress.org/Editing_wp-config.php#Debug (insert the code in the wp-config.php) and then check if WP outputs an error message. You can also try to re-install all theme/plugin files – maybe one or more files are corrupt. You can try to deactivate all other third party plugins. This will reduce the memory usage and you can be sure it’s not a third party plugin conflict.
Best regards,
PeterHey!
In your last post you wrote “I don’t know what happend, but now I can’t even load the temes page from the WP main menu. The screen goes totaly white.” – that’s probably a memory issue. Please try to increase the allocated php memory to 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
and add following code to the wp-config.php file
define( 'WP_MEMORY_LIMIT', '128M' );
Cheers!
PeterHey!
Please post a link to your website – I’ll check the code in avia.js
Best regards,
PeterJanuary 13, 2014 at 6:55 pm in reply to: Portfolio items sorting not visible in WPML translated page. #209110Hi maratino!
Can you please create me an admin account – I’ll look into it.
Cheers!
PeterJanuary 13, 2014 at 6:54 pm in reply to: different multi language url's on one orderbutton possible? #209109Hi!
Yes please because I don’t know if WPML supports your shopping cart and how you need to set it up to use it with the shopping cart plugin.
Regards,
PeterJanuary 13, 2014 at 6:46 pm in reply to: No/error logo in header (for second language wpml pages) #209102Hi braunfish!
Please switch to the “English” version of your website (language switcher on the admin page) and go to Enfold > Theme Options. Then check the logo setting and update the logo url if necessary.
Regards,
PeterJanuary 13, 2014 at 6:43 pm in reply to: Portfolio permailnk change error on latest version **URGENT** #209100Hey!
Also see http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/ for more information.
Regards,
PeterJanuary 13, 2014 at 3:37 pm in reply to: different multi language url's on one orderbutton possible? #208984Hi David!
Yes, if you’re using WPML you can install this plugin: http://wordpress.org/plugins/woocommerce-multilingual/ to translate your WooCommerce cart and customer account pages. If you’re not using WPML and/or WooCommerce I don’t know the answer – in this case I recommend to contact the plugin author of the shopping cart or translation plugin and ask him if (and how) you can translate the urls.
Best regards,
PeterHey Ben!
Yes, we already change the slug translation method. A tutorial can be found here: http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/
Cheers!
PeterHey!
We recommend ftp because you can backup the theme files first AND you can make sure that all new files are uploaded on your server. The wordpress installation method sometimes fails (corrupt files, etc.) and this can result in weird theme errors/issues.
Regards,
Peter -
AuthorPosts