Forum Replies Created
-
AuthorPosts
-
Hey!
Nein leider. Beides würde neue Layout Element erfordern. Wenn du es so nicht richtig hinbekommst, dann lass die Kette etwas kleiner und verwende diesen Code
.page-id-2380 #kette .container img{ width: 200px; height:auto; }
um die Kette auf der anderen Seite ebenfalls zu verkleinern.
Regards,
PeterDecember 24, 2013 at 10:07 am in reply to: Post Detail Page Title defaults to Blog: Latest News #203522Hey!
Yes, insert following code into the functions.php file
add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { if (is_single()) { $args['title'] = get_the_title($id); $args['link'] = get_permalink($id); } return $args; }
Cheers!
PeterHi!
I forwarded/marked this thread for Kriesi. He’s aware of it and he’ll look into it.
Regards,
PeterHey!
Afaik this is a limitation of the gravatar service and not our theme. You can use this filter code: http://ianjgough.com/blog/setting-up-the-alt-tag-for-gravatar-in-wordpress/ in the child theme functions.php file if you don’t want to modify the parent theme files.
I’ll check if your code makes sense and maybe we’ll add it to the core files with the next version.
Regards,
PeterDecember 23, 2013 at 1:16 pm in reply to: Enfold is consuming an inordinate amount of processor time? #203254Hey andri7luck!
You can try to disable all third party plugins which are not required. If this doesn’t solve the problem I recommend to switch to a better hoster. Unfortunately Enfold is a complex theme which requires more resources than a simple, standard theme like TwentyThirteen,
Best regards,
PeterHi Yaron!
See https://kriesi.at/support/topic/toggle-with-sorting-enabled-not-working-in-the-2-4-3/#post-201140
Regards,
PeterHey!
You can try to use the code from single-portfolio.php and /wp-content/themes/coherence/includes/loop-portfolio-single.php which also supports tags. The comments are not activated by default but I added a “comments” element to the layout builder. I’m not sure if Kriesi already included it in 2.4.4 but I guess he did. Please update your theme to 2.4.4 and you should be able to use the new element.
Best regards,
PeterDecember 23, 2013 at 12:40 pm in reply to: Remove Website / HTML code from the "Comment" section of Blog Post #203250Hey!
1) There’s a plugin for this: http://wordpress.org/plugins/disable-hide-comment-url/ – I’m not sure if it’s compatible with wp3.8 though.
2) Add following csscodeinto the quick css field
.single-post .avia-post-nav{ display: none !important; }
Regards,
PeterDecember 23, 2013 at 12:36 pm in reply to: portfolio catagory falling under parent when it should not #203249Hi segalmedia!
Can you please elaborate? Maybe create us an admin account which enables us to check the category structure first hand.
Regards,
PeterDecember 23, 2013 at 12:34 pm in reply to: Print Friendly and PDF plugin pushes sidebar below content #203248Hey!
The plugin seems to manipulate the html structure of the website and this breaks the theme. Normally it should look like
.container
– .template-page.content
– .sidebarbut with the print plugin it looks like
.container
– .template-page.content
.sidebarand this structure pushes the sidebar container underneath the main content container. Please contact the plugin author and ask him how to deactivate the html code manipulation because this is not easily fixable with css. Alternatively I recommend to use another plugin.
Best regards,
PeterHey!
Unfortunately this can happen if a database error occurs (i.e. if the data transmission fails and the data in the database is corrupt or if the server stops to write the data to the database because of the number of requests/procedures, etc.). I suggest to make a regular backup of the database every day (i.e. with tools like: http://wordpress.org/plugins/backupwordpress/ ) and then you can restore it if some data is corrupt.
Cheers!
PeterHi!
The subject field (and email subject) seems to work for me with the contact form here: http://www.adw.cl/contact/ . Note that by default it will only work if you use the label “Subject” for the field. If you use a different label for the subject field the theme will not recognize it as subject field automatically. If you want to use a different subject label add following code to functions.php
add_filter('avf_form_subject','avia_change_form_subject', 10, 3); function avia_change_form_subject($subject, $new_post, $form_params){ $key = "XXX"; $key = avia_backend_safe_string($key, '_', true); if(!empty($new_post[$key. '_1'])) $subject = $new_post[$key . '_1'] return $subject; }
and instead of XXX insert the text of your subject label.
Cheers!
PeterDecember 23, 2013 at 11:08 am in reply to: Enfold: Best way to link to a specific portfolio category? #203240Hey K!
1) If you just want to display the category name in the breadcrumb (and not the portfolio grid page links, etc.) try to add following code to the theme functions.php file
add_action('after_setup_theme','avia_remove_portfolio_breadcrumb'); function avia_remove_portfolio_breadcrumb(){ remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb'); }
2) You can remove the “Archive for” text. Open up /wp-content/themes/enfold/framework/php/function-set-avia-frontend.php and replace
$output = __('Archive for:','avia_framework')." ".$term->name;
with
$output = $term->name;
3) No, the ajax portfolio does not support a pre-sort at the moment.
Cheers!
PeterDecember 23, 2013 at 11:01 am in reply to: Get a right sidebar in Woocommerce single product #203239Hey Emmanuelppp!
The single product template does not support a right sidebar at the moment. It would require some major template rewrites and some theme code customization. You can suggest the feature here: https://kriesi.at/support/topic/enfold-feature-requests/ – if more users request it we’ll look into it.
Regards,
PeterHi!
I don’t think it’s theme related. You can also choose a standard font or another google font and then you shouldn’t get this issue with our theme too.
Regards,
PeterHey!
It seems like you’re using Helvetica for the body at the moment. Try to add following code to the quick css field to change the font
body { font: 16px/1.95em "Calibri", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; } .helvetica-websave{ font-family: "Calibri", Helvetica, "HelveticaNeue", "Helvetica Neue", Arial, Verdana, sans-serif; } .helvetica-neue-websave{ font-family: "Calibri", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif; }
Regards,
PeterDecember 23, 2013 at 10:23 am in reply to: Multilingualpress Language Switcher Enfold – Applying style of the header menu #203226Hi!
I suggest to add this code to header.php and then use this css code
.mlp_language_box{ display: none; }
to hide it. Afterwards we’ll try to find a quick solution to position it properly but I can’t promise a solution because this customization is beyond the scope of our support forum (implementation of third party plugin code).
Best regards,
PeterHi!
Yes, there was a syntax error with the quotes. I updated the code – please try it again.
Cheers!
PeterHi crevlon!
Nein, fullwidth Elemente (welche über die gesamte Breite der Seite gehen) können nicht mittels Shortcode eingefügt werden. Dazu gehören die Masonry Gallery, der LayerSlider, der fullwidth und fullsize Slider und die Color Section.
Cheers!
PeterDecember 23, 2013 at 10:07 am in reply to: Small layout for blog not displaying featured images #203216Hey!
It seems like your stylesheet (probably some code in the quick css field) contains some css styling which hides the blog meta data
.blog-meta { display: none; }
This code will also hide the preview image on the blog page.
Regards,
PeterHi!
Vermutlich muss du hierzu die Weite von “.page-id-2380 div .av_one_fourth” entsprechend vergrößern. 11% werden zu wenig sein.
Regards,
PeterHey!
Please use this plugin: http://wordpress.org/plugins/insert-html-snippet/ to insert raw js or css code into the text box. Our theme uses the wpautp() function to sanitize the text content and maybe it does not interpret your raw code properly.
Best regards,
PeterHi!
Glad you found the cause of the php warning :)
Best regards,
PeterHey!
Please create me an admin account and post the login data as private reply – I’ll modify the file for you. Your code change doesn’t seem to take effect because the filter links still do not contain the curly brackets.
Best regards,
PeterHey penumbra!
If you want to disable the lightbox with a child theme add following code to the functions.php file
/* * Register frontend javascripts: */ if(!is_admin()) { add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 100); } function avia_register_child_frontend_scripts() { $child_theme_url = get_stylesheet_directory_uri(); wp_dequeue_script('avia-prettyPhoto'); wp_dequeue_style('avia-prettyP'); wp_dequeue_style('avia-custom'); //register js wp_register_script( 'avia-default-child', $child_theme_url.'/js/avia.js', array('jquery'), 1, false ); }
Then create a “js” folder within the child theme folder (i.e. enfold_child\js) and create an avia.js file with the folder. Open up the file and insert this code
function avia_lightbox_callback(elements,ww,wh){ (function($){ elements.each(function() { var el = $(this); if(!el.hasClass('noLightbox')) { el.addClass('lightbox'); } }); jQuery('a.lightbox').on('click', function() { return false; }); })(jQuery); }
Regards,
PeterHey!
Dann versuche die Größe des Bildes direkt anzupassen
.page-id-2380 div .av_one_fourth img { width: 11% !important; height: 200px; width: auto; }
Regards,
PeterHey!
Kannst du mir bitte einen Admin Account einrichten – ich sehe mir die Sache an.
Cheers!
PeterHi!
Versuche dieselbe min-height auch für das “Viertel” Element zu setzen:
.page-id-2380 div .av_one_fourth { width: 11% !important; min-height: 250px; } .page-id-2380 div .av_one_half { width: 66%; min-height: 250px; }
Best regards,
PeterHey!
1) If you selected this page as “blog” page (Enfold > Theme Options) you can’t display a slider because a special blog template will be used for the blog page. However you can deselect the page (or select another page for the blog) and then add a blog element to the “Team News” page. The Team News page will then show the advanced layout – including the slider + blog element.
2) You can’t set the width of the sidebar to exactly 300px however you can change the layout by changing the container units class. See: https://kriesi.at/support/topic/changing-the-sidebar-width-and-keeping-it-responsive/
Regards,
PeterDecember 21, 2013 at 1:41 pm in reply to: Getting PHP error message on Enfold Theme recent download with wordpress #202872 -
AuthorPosts