Forum Replies Created
-
AuthorPosts
-
Hey!
Can you post a link to the website please? I need to check the css & html code first hand.
Regards,
Peter
Hi!
You can use a media query – it will only affect smaller screen which use the pulldown menu
@media only screen and (max-width: 767px) {
your css code
}Replace “your css code” with your style rules and adjust the max-width value if necessary…
Regards,
Peter
Hallo,
1) das Beitragsbildproblem muss ich mir im Backend ansehen – bitte erstelle mir einen Admin Account und sende mir die Zugangsdaten zu: (Email address hidden if logged out)
2) Soweit ich weiß zeigt die Slideshow dezeit immer nur eine bestimmte Größe an und passt sich nicht an die Vorschaubildgröße an. Ich werde aber Kriesi fragen, ob dieses Feature irgendwie aktiviert werden kann oder womöglich in einem Update hinzugefügt wird.
I tagged this thread for Kriesi because I can’t reproduce the problem with Safari on Win8 (I tested it on my server & demo page here: http://kriesi.at/themes/enfold/ ). Maybe it’s a OS (MacOSX) specific issue.
You can add a margin to the menu container to center the menu – use following css code and change the value based on your requirements.:
.main_menu {
right: 100px;
}You can also use media queries to set different margins ffor different screen resolutions:
@media only screen and (max-width: 767px) {
.main_menu {
right: 10px;
}
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
.main_menu {
right: 50px;
}
}Hallo,
der “Weiterlesen Tag” wird hier nicht unterstützt, da wir den “Auszug” Text abfragen. In dieses Feld kann man einen beliebig langen Text (zB 20 oder 30 Wörter) eintragen und es hat darüber hinaus den Vorteil, dass der “Excerpt” Text sich vom normalen Artikelinhalt unterscheiden kann, was sich wiederum postiv auf SEO auswirken kann, da man Duplikate vermeidet.
Das Auszug Feld findet sich unterhalb des Texteditors. Falls es nicht sichtbar ist einfach auf “Optionen” in der rechten oberen Ecke klicken und die Checkbox bei “Auszug” markieren.
Afaik Kriesi already added a filter to the form class which allows you to change the subject without modifying framework/php/class-form-generator.php. You must use Enfold 2.0.x. Insert following code at the bottom of functions.php:
add_filter('avf_form_subject','avia_change_mail_subject', 10, 3);
function avia_change_mail_subject($subject, $new_post, $form_params)
{
$subject = 'My email subject';
return $subject;
}and instead of “My email subject” insert your custom subject text.
Update – I just saw that this filter is not included in the themeforest version of the theme yet but it will be part of the next update. If you want to use it now (with the current Enfold version) replace
$subject = urldecode( $subject . " (".__('sent by contact form at','avia_framework')." ".$myblogname.")" );
with
$subject = urldecode( $subject );
$subject = apply_filters("avf_form_subject", $subject, $new_post, $this->form_params);Actually I can’t reproduce the issue on your page. The breadcrumb shows “You are here:Home / Tiles / Glass Tiles”: http://www.screenr.com/Fe0H
However maybe try to clear the browser cache & cookies because Kriesi sometimes uses sessions: https://kriesi.at/support/topic/breacrumps#post-134714 to generate the breadcrumb for portfolio items
No, this is not easily possible because you can just set one relation and you try to combine two relations (namely AND and IN). It’s definitely possible to implement such a query logic but you need to hire someone to customize the files.
I found this article: http://www.wptaskforce.com/how-to-exclude-one-or-more-category-in-woocommerce-shop-page/
Basically you need to insert it at the bottom of functions.php. Then replace
'field' => 'slug',
'terms' => array( 'PUT YOUR CATEGORY HERE' ), // Don't display products in the mwith
'field' => 'id',
'terms' => array(20,25), // Don't display products in the mand instead of 20, 25 insert the category id(s) you want to exclude. Separate them with a comma.
Hi!
Yes. The wp-contentthemesenfoldincludeserror404.php template/file contains the source code.
Regards,
Peter
August 30, 2013 at 8:11 am in reply to: CSS Horizontal Jquery Accordion in WordPress einfügen #138182Ich habe das CSS Jquery Slider Accordion Skript auch mittels Google nicht finden können – daher weiß ich nicht genau was es tut bzw. wie es aussieht. Eine Lösung wäre vielleicht das bestehenden “Accordion” Element mit einer Gallery to kombinieren. ZB kannst du eine Standard WordPress Gallerie einbetten oder Nextgen Gallery installieren: http://wordpress.org/plugins/nextgen-gallery/ und diesen Shortcode in das Accordion einfügen. Bei Nextgen ist aber zu beachten, dass v2.0.x sehr buggy ist und daher würde ich vorerst nur: http://downloads.wordpress.org/plugin/nextgen-gallery.1.9.13.zip installieren.
Hey!
Please post a link to the add to cart page & slider page – I need to investigate the source code first hand. Please deactivate the “coming soon” page/plugin if necessary.
Regards,
Peter
Hi!
Please create me a wordpress admin account and send me the login data to: (Email address hidden if logged out) – I’ll look into it.
Regards,
Peter
Hi!
Thanks colorit2 for the information ;-)
Best regards,
Peter
August 30, 2013 at 7:19 am in reply to: Enfold stylization options are not changing headers and menus #138140It seems like your server blocks the access to the dynamic stylesheet: http://www.hcs.harvard.edu/~rce/wp-content/uploads/dynamic_avia/enfold.css which contains the custom css code and the code which is generated when you save the styling settings (Enfold > Theme Options). Make sure that the file permission is set to 777 – Enfold must be able to read/write to this file and external visitors must be able to view & download the file – otherwise the browser can’t load & interpret the css code.
Try following css code
#footer div .av_one_half.first {
width: 20%;
}
#footer div .av_one_half {
width: 80%;
}You probably need to decrease the % values a bit (eg set it to 17% and 77%) because of the padding/margins between the columns.
Open up js/avia.js and search for
if(st < el_height/2)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height/2;
header.addClass('header-scrolled');
}Replace it with
if(st < el_height/2)
{
newH = el_height - st;
header.removeClass('header-scrolled');
}
else
{
newH = el_height/2;
header.addClass('header-scrolled');
}
if(newH < 50) newH = 50;and instead of 50 set your minimum height value (at the moment it’s set to 50px).
Hey!
You can try following css code:
.avia-slideshow {
border: 3px solid #333;
}Insert it into the quick css field and change the border color (#333) and width value (3px) if necessary.
Regards,
Peter
Hey!
Great :)
Best regards,
Peter
Hey!
I added your request to the feature request thread: https://kriesi.at/support/topic/enfold-feature-requests/page/8?replies=218#post-136499
Best regards,
Peter
Hi!
More slug options for portfolio items: https://kriesi.at/support/topic/replacing-portfolio-slug-with-portfolio-category
Regards,
Peter
Hey!
Yes, please try it on a clean installation. I also tagged this thread for Kriesi in case he has a better solution/fix.
Regards,
Peter
The breadcrumb will always show the parent page(s) of the current page. Make sure that the page hierarchy is correct. You can set the parent page in the right sidebar of the page editor screen (underneath the blue Publish/Update button).
August 30, 2013 at 6:03 am in reply to: typekit fonts And ugly effect rewrite words with differents fonts #138134The delay is probably a side effect of long loading times (the browser loads the theme css code first and then loads the font files which replace the default font). You can try to install a minify/cache plugin like: http://wordpress.org/plugins/w3-total-cache/ to improve the performance.
Open up wp-contentthemesenfoldframeworkphpclass-framework-widgets.php and replace
$additional_loop = new WP_Query("cat=".$cat."&posts_per_page=".$count);
with
$additional_loop = new WP_Query("cat=".$cat."&order=ASC&orderby=title&posts_per_page=".$count);
You can use following css code to change the vertical alignment of the table – insert it into the quick css field:
table, tbody, tfoot, thead, tr, th, td { vertical-align: baseline; }
All properties are listed here: http://www.w3schools.com/cssref/pr_pos_vertical-align.asp
If you want to change the alignment of a certain table I’s suggest to wrap the td data (or the entire table shortcode) into a div with a custom class and then you can use i.e.
.customclass table, .customclass tbody, .customclass tfoot, .customclass thead,.customclass tr, .customclass th, .customclass td { vertical-align: baseline; }
to change the alignment of this table only.
I can’t reproduce the issue on my test system (IETester or IE10 dev console) but you can try to add an important tag to the no-repeat code to avoid that any js script overwrites the property.
background-repeat:no-repeat !important;
Hi!
Great, glad Relevanssi solved the problem I tagged it for Kriesi in case he can improve the default search somehow.
Best regards,
Peter
Do you mean the standard text strings like on the search page: http://www.volantexrc.com/cn/?s= (“If you are not happy with the results bellow please do another search”, etc.)? If yes you must translate these strings with a po/mo translation file. I’d suggest to generate the po file with Codestyling: 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”. Afterwards select your language from the list and click the “create po-file” button. Click on “Rescan” to fetch 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).
Or do you want to translate i.e, “ABOUT US”? If yes just open up the textblock element (seems to be part of a color section) and replace the text with your translation…
-
AuthorPosts