Forum Replies Created
-
AuthorPosts
-
Hi nbenson!
I markiere diesen Thread für Kriesi. Ich kenne dieses Plugin leider nicht und weiß auch nicht, ob Kriesi diesen Fehler beheben kann/will. Andere Erweiterungen (WooCommerce, Nextgen, mein WP-Backgrounds plugin, etc.) greifen ebenfalls auf den Uploader zu und funktionieren einwandfrei und ohne Fehler, sodass es ein Plugin-spezifisches Problem ist.
Best regards,
PeterHi mako10!
You can install a SEO plugin like: http://wordpress.org/plugins/wordpress-seo/ which enables you to change these meta tags settings for each post/page.
Cheers!
PeterHi envatoaccount8310!
No, unfortunately this is not possible. You can use the “Custom Link” option to paste the url ( example.com/hello/#anchor1 ) into a text field.
Cheers!
PeterHey!
I suggest to use a plugin ( http://wordpress.org/plugins/simple-image-sizes/ ) to change the sizes.
Regards,
PeterHey!
Installiert dieses Plugin: http://wordpress.org/plugins/display-widgets/ und legt unter Design > Menüs diese Sidebar Menüs an. Dann geht zu Design > Widgets und fügt mehrere “Individuelles Menü” Widgets in die “Displayed Everywhere” oder “Pages” Sidebar ein. Dann verwendet die “Display Widgets” Optionen um die Widgets bei den jeweiligen Seiten zu anzeigen zu lassen bzw. diese auf den anderen Seiten zu verstecken.
Best regards,
PeterHi!
I’ll mark this for Kriesi. Maybe he knows why it doesn’t work on your server.
Best regards,
PeterHey!
Maybe a plugin which manipulates the admin bar output or a browser extension breaks the search. I can’t reproduce the issue on my test server and no other user reported a similar issue so far…
Best regards,
PeterHey bastikan!
Bitte entschuldige die späte Antwort – ich habe diesen Post übersehen. In enfold\config-templatebuilder\avia-shortcodes\portfolio.php ersetze:
if(!empty($title)) { $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $output .= '<header class="entry-content-header">'; $output .= "<h2 class='portfolio-grid-title entry-title' $markup><a href='{$title_link}'>".$title."</a></h2>"; $output .= '</header>'; }
durch
if(!empty($title)) { $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $output .= '<header class="entry-content-header">'; $output .= "<h2 class='portfolio-grid-title entry-title' $markup>".$title."</h2>"; $output .= '</header>'; }
und
if(!empty($title)) { $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $output .= '<header class="entry-content-header">'; $output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>"; $output .= '</header>'; }
durch
if(!empty($title)) { $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $output .= '<header class="entry-content-header">'; $output .= "<h3 class='grid-entry-title entry-title' $markup>".$title."</h3>"; $output .= '</header>'; }
2) Dazu müsste man mit jQuery den Title tag der Bilder entfernen. Öffne enfold/js/avia.js und ersetze:
$('a.avianolink').on('click', function(e){ e.preventDefault(); });
durch
$('.portfolio-details-inner img').attr('title', ''); $('a.avianolink').on('click', function(e){ e.preventDefault(); });
Cheers!
PeterHi!
Ich glaube hier zieht PrettyPhoto den Text vom title tag des Links. Versuche diesen Code:
jQuery(document).ready(function($) { $('.tiled-gallery-item a').each( function(){ var img = $(this).find('img'), title = img.attr('title'); $(this).attr('title', title); }); });
Cheers!
PeterHi!
Open up wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\magazine.php and replace:
$style = ($loop === 1 && !empty($this->atts['first_big'])) ? "big" : "small";
with
//$style = ($loop === 1 && !empty($this->atts['first_big'])) ? "big" : "small"; $style = (!empty($this->atts['first_big'])) ? "big" : "small";
and tick the “Should the first entry be displayed bigger” checkbox.
Regards,
PeterHi raineysw!
Yes, the latest version (Enfold 2.7.1) fixes the issue.
Regards,
PeterMay 3, 2014 at 2:53 pm in reply to: Benutzerdefinierte Farbe und Bildunterschrift seit Update anders?! #259684Hey!
Ja, die Schriftfarbe eingeben kann man nicht. Ich muss zugeben, dass ich auch nicht weiß, ob dies vorher überhaupt möglich war. Wenn ich aber das Theme auf zB TwentyThirteen ändere, kann man ebenfalls keinen Farbwert eingeben, sodass es nicht am Enfold Code liegen kann. Als Workaround empfehle ich in den “HTML” Modus zu wechseln und den Farbwert im Code abzuändern.
Das Absatz Problem hat ein anderere User bereits berichtet und sollte mit dem nächsten Update behoben werden.
Cheers!
PeterMay 3, 2014 at 10:59 am in reply to: Emphasize menu also in other languages the site is translated #259657Hey!
Glad you solved the problem :)
Best regards,
PeterHi!
Schön, dass es jetzt funktioniert :)
Best regards,
PeterMay 3, 2014 at 10:55 am in reply to: How to adapt the menu and footer for each language the site ? #259654Hey!
To translate the menu go to Appearance > Menus and translate each menu. WPML shows you which menu is translated and if it’s not translated yet you can create a new menu and assign it as “translation” to an existing menu.
The footer widgets are not directly translatable. You can use Widget Logic or http://wordpress.org/plugins/display-widgets/ to show different widgets for different languages. Please refer to this article: http://wpml.org/2011/03/howto-display-different-widgets-per-language/
Regards,
PeterMay 3, 2014 at 8:37 am in reply to: Benutzerdefinierte Farbe und Bildunterschrift seit Update anders?! #259647Hey simonac!
1) Danke für den Hinweis. Das Caption Problem werden wir mit dem nächsten Update beheben. Für einen Quick Fix füge diesen Code in das Quick CSS Feld ein:
#top .wp-caption .wp-caption-dd{ display:block; font-size:11px; font-style:italic; margin:0 auto; padding:3px 10px 5px; text-align:center; font-family: Georgia,"Times New Roman"; float: none; }
2) Die Schriftfarbe sollte sich ohne Probleme im Texteditor ändern lassen. Falls dies nicht funktioniert deaktiviere bitte die Plugins – möglicherweise verursacht eines davon ein Problem mit TinyMCE.
Cheers!
PeterHey Bruno!
At least I didn’t close it intentionally and I opened it again. Kriesi is still tagged on the topic.
Cheers!
PeterHi!
Kein Problem. Das ist mitunter ein Grund warum ich derzeit Yoast SEO empfehle. Sergej’s Plugin macht zwar alles richtig, aber mAn fehlen ein paar Funktionen (Sitemap, og:meta Unterstützung mit individueller Konfiguration für Seiten, Artikel, etc.), sodass unterm Strich Yoast SEO für viele benutzerfreundlicher ist. Ich persönlich fände es gut wenn solche Optionen in WP SEO integriert wären und als Module aktivierbar/deaktivierbar wären, damit Benutzer (welche diese Funktionen nicht benötigen) Performance sparen können…
Best regards,
PeterMay 2, 2014 at 10:47 am in reply to: Text Block / Tiny MCE Bug with WP 3.9 when editing in Chrome #259292Hi!
Btw – the update will be released in the next 48 hours.
Cheers!
PeterMay 2, 2014 at 10:35 am in reply to: Text Block / Tiny MCE Bug with WP 3.9 when editing in Chrome #259287Hey!
Thank you for the notice. Kriesi will release a theme update for Enfold soon (v 2.7.1 or so). Please wait for the update and if it doesn’t fix the issue we’ll look into it.
Regards,
PeterHey revion!
Yes, you can’t simply change the protocol. If you want to change the url from http://www.revion.com/company/contact/ to https://www.revion.com/company/contact/ you must also load all resources (images, scripts, etc.) from https://. However it requires that all url paths in the database also point to the https:// url. I recommend to use WP MigrateDB or WP MigrateDB PRO to export the database. Use the “domain replacement” feature to replace all occurrences of http://www.revion.com/ with https://www.revion.com/ in your database and export the database. Then make a backup of your old database, delete the database data and import the database file you exported with the migrate plugin.
Regards,
PeterHey WickedShamrock!
Please use the quick CSS field (Enfold > Theme Options > Styling) or (best solution) use a child theme: http://kriesi.at/documentation/enfold/using-a-child-theme/ to overwrite the theme styling.
Best regards,
PeterHi!
Glad it works now :)
Regards,
PeterHey!
You can try to change the main query var with a filter – insert it into the functions.php file:
function my_modify_main_query( $query ) { $blogpage_id = avia_get_option('blogpage'); $id = @get_the_ID(); if ( $id == $blogpage_id ) { $query->query_vars['order'] = ASC; } } // Hook my above function to the pre_get_posts action add_action( 'pre_get_posts', 'my_modify_main_query' );
Make sure the “blog page” option is set on the theme option page – otherwise the check $id == $blogpage_id (current page = blog page) may not work.
Cheers!
PeterHey cortvermin!
Öffne enfold/js/avia.js und füge diesen Code ganz am Ende ein:
jQuery(document).ready(function($) { $('.tiled-gallery-item img').each( function(){ var img = $(this), title = img.attr('title'); img.attr('alt', title); }); });
Dies sollte die Bilder Titel as alt Attribut setzen und prettyphoto sollte dieses als Titel anzeigen.
Um das Overlay zu deaktivieren füge folgenden Code in das Quick CSS Feld ein:
.tiled-gallery .tiled-gallery-item a .image-overlay { display: none !important; }
Best regards,
PeterHi!
Ich glaube hierfür gibt es sogar einen WPSEO Artikel – siehe: http://helpdesk.wpseo.de/manual/open-graph/ und den Code für das og:meta image hier: http://playground.ebiene.de/wordpress-google-plus/
Cheers!
PeterHi gmmediadienste!
No, tbh I’ve never used a directory plugin for my projects. I’ll leave this thread open in case another support staff member can recommend a plugin.
Regards,
PeterHi mar10nlund!
You can use rgba colors for a semi transparent background – this generator will help you to convert any he color value to rgba: http://hex2rgba.devoth.com/
I recommend to use Firebug or Chrome developer tools to investigate the css attributes of the html elements and to change the background color of all relevant sections. A tutorial can be found here: http://premium.wpmudev.org/blog/customizing-your-wordpress-theme-using-firebug/
Best regards,
PeterHi!
Thanks for helping us out!
Cheers!
PeterHi!
1) Yes, the language switcher will be added automatically. If you want to deactivate it insert this code into your child theme functions.php file:
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) Please create us an admin account and post the login credentials as private reply.
Regards,
Peter -
AuthorPosts