Forum Replies Created
-
AuthorPosts
-
Hey!
How did you migrate the database to the other server/webhost? I recommend to use WP MigrateDB or WP MigrateDB PRO to export the database otherwise there’s a high chance that some serialized data breaks your post/plugin settings, etc. data when you import the database on your new server. This also explains why only some pages/plugins are broken and not the entire website.
Cheers!
PeterHi Munford!
I marked this thread for our support staff members with Mac computers.
Cheers!
PeterMay 28, 2014 at 2:42 pm in reply to: AJAX-Suche – Workaround funktioniert nicht bei allen Texten #271139Hi!
Ihr könnt probieren die gesamte Funktion in enfold/functions-enfold.php zu ersetzen. Diese startet mit:
if(!function_exists('avia_ajax_search'))
und endet mit:
echo $output; die(); } }
Kopiert am Besten die neueste Version dieser Funktion aus der aktuellen enfold/functions-enfold.php (Version 2.8) und fügt den Code in eure functions-enfold.php (V1.9.1) ein und überschreibt den “alten” Funktionscode.
Regards,
PeterHey!
Bitte versuche Enfold auf Version 2.8 zu aktualisieren. Ich empfehle hierfür FTP zu verwenden: https://vimeo.com/channels/aviathemes/67209750
Cheers!
PeterHey!
Tbh I’m not familiar with CAT services and all I can say is that it’s currently not possible to export the advanced layout builder templates as html code. This fact probably makes it impossible for you to translate the templates with a CAT services if the CAT software can’t parse shortcode data. I’ll mark this thread for Kriesi though – maybe he can provide some useful hints.
Best regards,
PeterHey jskooij!
You can change the “from” email address with a filter. Insert this code into the child theme functions.php file or into enfold/functions.php:
add_filter('avf_form_from', 'avia_change_from', 10, 3); function avia_change_from($from, $new_post, $params){ $from = " (Email address hidden if logged out) "; return $from; }
and instead of ” (Email address hidden if logged out) ” insert your email address.
Cheers!
PeterHi!
Please try this code:
@media only screen and (max-width: 989px) { strong.news-headline { text-align: center; clear:both; display: block; width: 70%; } }
If the code still doesn’t work try to change the width value (i.e. to 30% or 100%) and check if this makes any difference.
Regards,
PeterHey fotograf561!
1) Leider ist dies derzeit nicht möglich. Das Logo beeinflusst durch seine Höhe auch die Höhe des Kopfbereiches und schiebt dadurch das Menü auch nach unten, wenn es größer wird.
2) Dies geht sehr einfach. Unter Enfold > Theme Options > Footer Layout sucht nach dem “Copyright” Textfeld und fügt dort
[nolink]
ein. Wenn ihr schon einen benutzerdefinierten Text verwendet, so fügt [nolink] einfach am Anfang oder Ende eures Textes hinzu.
Cheers!
PeterHi!
Please create us an admin account and post the login credentials as private reply – I’ll check the configuration.
Best regards,
PeterHey joelpukalo!
Please try to install (and configure) this plugin: https://wordpress.org/plugins/webriti-smtp-mail/ – if the contact form still doesn’t work even if smtp is used please try to install another contact form plugin like: https://wordpress.org/plugins/contact-form-7/ and check if this plugin can send mails from your server.
Best regards,
PeterHi Mohan-Iyer!
The background size depends on the screen resolution – screens with a resolution also require a bigger background image size, otherwise the image will look blurry (or if you don’t stretch the image) the user will notice the margins of the image. I recommend to use an image size of at least 1920x1080px or more.
Best regards,
PeterHi!
WooCommerce triggers an action called “added_to_cart” when the user clicks the “Add to cart” button. Kriesi uses this action to fire the “update_cart_dropdown” function located in wp-enfold\enfold\config-woocommerce\woocommerce-mod.js. If you need a different hook/action for your script I recommend to study the documentation here: http://docs.woothemes.com/documentation/plugins/woocommerce/ and to read the comments inside the plugin code (woocommerce folder).
Best regards,
PeterHey!
I just checked the portfolio page: http://www.taos.es/test-page/ and all 3 portfolio entries are listed at the very top. Maybe the server caches the content somehow and it takes some time until the masonry grid lists all new entries?
Regards,
PeterHey!
Nein, die User ID kann nicht verändert werden. Diese wird automatisch von WordPress vergeben sobald der Kunde ein Konto erstellt wobei diese immer fortlaufend und einmalig vergeben wird. Derzeit unterstützt weder WordPress noch WooCommerce ein Kundennummer-Feld und auch unser Theme fügt diese Funktion nicht hinzu. Ihr müsstet daher einen Entwickler mit der Implementierung beauftragen, wenn ihr ein solches Kundennummer-Feld haben wollt.
Regards,
PeterHey!
1) Insert this code into your child theme functions.php file to deactivate the default theme flags/language switcher:
add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); }
2) Then go to WPML > Languages and tick the “Display the language switcher in the WP Menu” option. You can also configure the language switcher type (dropdown, list, etc.) on this option page.
Regards,
PeterMay 26, 2014 at 6:44 pm in reply to: WPML Translation management – linebreaks in tables not longer possible #270198Hi!
I’ll forward this to Kriesi. I couldn’t find any obvious js error/conflict on the editor page and it seems like the translation plugin simple blocks the enter key event. As a temporary solution I recommend to use the
<br/>
html tag if you want to add a line break.
Regards,
PeterMay 26, 2014 at 6:27 pm in reply to: Placing blog title above featured image, excerpts below #270194Hey nerkasa!
Yes the instructions are still valid. Basically you need to replace:
$output .= !empty($excerpt) ? "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt."</div>" : "";
with
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : ""; $output .= !empty($excerpt) ? "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt."</div>" : "";
and delete this line:
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
If you want to “replace” the original parent theme shortcode with your child theme please follow the instructions here: http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/
Cheers!
PeterHi Omer!
Maybe Enfold can’t regenerate the dynamic stylesheet for one (or more) languages. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete the enfold.css file and all other css files – the name may vary based on the language shortcut – inside the dynamic_avia folder. Afterwards go to Enfold > Theme Options to regenerate the dynamic stylesheets (hit the green “Save all changes” button). Please re-save the options for all languages. If this doesn’t solve the problem please create me an admin account and I’ll look into it.
Cheers!
PeterMay 26, 2014 at 6:15 pm in reply to: Adding another "submit" button at the bottom of the contact form. #270190Hey!
The contact form doesn’t support a submit button to a different page – this would break the form data and send process. If you just want to add a button which links to the http://bodymindlinks.com/book-a-session/paid-cash-faq/ page please use the “Button” element which enables you to link to any internal or external page without modifying the theme files. If you need to submit the form data to http://bodymindlinks.com/book-a-session/paid-cash-faq/ then our contact form will not work (even if you add another button to the form) and you must hire a developer who can customize the theme files for you.
Regards,
PeterHi!
Thanks Flikk for helping us out ;)
Best regards,
PeterHey!
I couldn’t find any js error on the editor page which would cause this issue and I’m not aware of similar bug reports. I’ll forward this to Kriesi.
Best regards,
PeterHey!
No, you can’t export the advanced template builder templates as pure html templates. It doesn’t make much sense anyway because the shortcode data in the debug field contains the necessary information to translate the pages (text strings, ids of the entries/images, etc.).
Best regards,
PeterHey!
Tbh I’m not familiar with the fancybox theme and I don’t know why the page jumps when you click on the image links. You can try the child theme I uploaded here: http://www.mediafire.com/?05ho02ecut516hu – it replaces the prettyphoto script with fancybox and you don’t need to activate any additional plugins.
Best regards,
PeterMay 26, 2014 at 4:28 pm in reply to: AJAX-Suche – Workaround funktioniert nicht bei allen Texten #270138Hi!
Ja, ihr müsst vielleicht einige Einstellungen auf der Theme Options Seite neu konfigurieren und die child theme header.php mit dem neuen Code aktualisieren.
Regards,
PeterHey fredengl!
1) Yes, the fixed layout is just 960px by default. If you want to change it add this code to your child theme style.css file:
.container { width: 910px; } /* Base Grid */ .container .one.unit, .container .one.units { width: 30px; } .container .two.units { width: 110px; } .container .three.units { width: 190px; } .container .four.units { width: 270px; } .container .five.units { width: 350px; } .container .six.units { width: 430px; } .container .seven.units { width: 510px; } .container .eight.units { width: 590px; } .container .nine.units { width: 670px; } .container .ten.units { width: 750px; } .container .eleven.units { width: 830px; } .container .twelve.units { width: 910px; }
and change the width of the container from 910px to a higher width. You also need to increase the grid unit widths accordingly – they’re based on a 12 column grid structure – i.e. if you increase the container width from 910px to 1010px (+100px) the twelve units value will also increase to 1010px and the .six.units value increases from 430px to 480px (because 6 columns cover the first half of the container area).
2) No, the responsive mode will always adjust the layout based on the current resolution and viewport.
3) No, you can’t select different header layouts for different pages. There’s a general setting (Enfold > Theme Options > Header) which determines the header type of the entire website.
Regards,
PeterHi!
Personally I recommend to place this code into the child theme functions.php. If you want to place it into the parent theme file (enfold/functions.php search for this code at the very top of the file:
<?php global $avia_config;
and replace it with
<?php global $avia_config; add_action("avia_builder_mode", "builder_set_debug"); function builder_set_debug() { return "debug"; }
Best regards,
PeterMay 25, 2014 at 9:51 am in reply to: Masonry Gallery not loading more images on translated pages (WPML) #269644Hi!
Yes, it works now. I re-saved the the gallery and php file to make sure it’s no cache issue.
Best regards,
PeterMay 23, 2014 at 9:56 am in reply to: Ninja Forms Preview Shows Up in Breadcrumbs For ALL Media #269031Hi!
Please copy the code from here: https://kriesi.at/support/topic/ninja-forms-preview-shows-up-in-breadcrumbs-for-all-media/#post-269006 into the functions.php file (insert it at the very bottom). I tested it and it doesn’t trigger any errors on my test server. If it still doesn’t work on your server it might be a conflict with the Ninja Forms plugin…
Regards,
PeterHey!
Sehr gut, schön dass ich helfen konnte.
Regards,
PeterHey jonahrbrown!
Thanks for the notice. I’ll mark this thread for Kriesi.
Best regards,
Peter -
AuthorPosts