Forum Replies Created
-
AuthorPosts
-
Hi IHEA!
Please use this css code to justify the text:
.iconbox_content_container, .iconbox_content_container p{ text-align: justify; }
Cheers!
PeterHi hellovlad_!
The regular portfolio grid does not support a load more button. Please use the “Fullwidth Masonry Grid” element if you want to use a load more button instead of the pagination.
Best regards,
PeterHi!
Please use a jpg or png image for now and post a link to the website with the svg logo when it’s online and we can reach it without additional installing additional software. If we can’t investigate the source code and css styling with debug tools it’s hard to help you…
Cheers!
PeterHey!
I didn’t test the multi view calendar plugin. I worked with: http://tri.be/shop/wordpress-events-calendar/ in the past and it worked with Enfold and was compatible with the theme styling.
Best regards,
PeterMarch 16, 2014 at 5:16 pm in reply to: WPML language switcher disappeared after upgrading Enfold #238334Hi!
Did you try the temporary fix I posted here: https://kriesi.at/support/topic/wpml-language-switcher-disappeared-after-upgrading-enfold/#post-236236 ? The next update will make sure that the langage switcher is displayed even if no secondary menu is selected.
Cheers!
PeterHey wptest!
Ja, du könntest eine “Advanced Layout” Seite anlegen und auf dieser Seite ein “Blog” Element einfügen. Dann wähle die entsprechenden Kategorien aus und lasse jene weg, welche du nicht anzeigen möchtest.
Best regards,
PeterMarch 16, 2014 at 5:09 pm in reply to: Problem with ICON box which is too deep in any browsers #238329Hi!
I now logged in and noticed you’re using an old version of the theme. Please update it to 2.6.1 – then we can be sure it’s not a theme bug which we already fixed with the last theme update.
Regards,
PeterHi!
If you want to remove the taxonomy from the category list on the top of a blog post you can use this code:
add_filter('avf_exclude_taxonomies', 'avia_exclude_tax', 10, 3); function avia_exclude_tax($tax,$post_type,$id){ $tax[] = 'following_users'; return $tax; }
to remove it. Just insert the code at the very bottom of your child theme functions.php or paste it into enfold/functions.php if you don’t use a child theme. Replace “following_users” with the name of the taxonomy you don’t want to show in the category/term list. If you don’t know which taxonomy causes the output please ask the Polylang plugin author for more information.
Regards,
PeterHi!
Try this code to remove the unnecessary padding:
.page-listing .content{ padding-top: 0; padding-bottom: 0; }
Regards,
PeterHey!
Ich würde empfehlen hierzu einen Testserver aufzusetzen und dann könnt ihr testen, ob das Update euer Design durcheinander bringt oder nicht. Wenn ja, müsst ihr entscheiden ob es den Aufwand wert ist, oder ob ihr einfach die 2.5.x Version weiter verwendet.
Cheers!
PeterHey!
I can’t reproduce the issue. The google search snippet shows “MiniMedia | Het grafische bureau met internetdiensten – Gevestigd in Zevenbergen Grafisch ontwerp – Webdesign – Huisstijl ontwikkeling – Logo ontwerp – CMS.”
I don’t know if your server or a third party plugin outputs this data – however I know that our theme does not add anything like that to your website source code.
Best regards,
PeterHey!
Please make sure that the header settings are saved properly for all languages. Go to Enfold > Theme Options > Header and check the settings. Then click the “Save Changes” button. Afterwards select another language from the language switcher (can be found in the admin toolbar at the top) and then check the Enfold > Theme Options > Header and check the settings of the translated website. Probably the settings are a bit different and you need to re-configure them. Afterwards hit the “Save Changes” button again.
Regards,
PeterHi Kaio!
Yes, the layout builder is compatible with WPML. You can create different layouts for each page and/or translation of a page and you can even translate the portfolio grids, blog elements, masonry galleries, etc.
Regards,
PeterHi!
Maybe the language cookie is missing. Try to clear your browser cache & delete cookies and then go to the editor page to translate it. See: https://kriesi.at/support/topic/wpml-homepage-blog-post-not-working/#post-230549
Cheers!
PeterHey!
You can’t great a feed of a single portfolio entry – i.e. http://www.chris-kettner.de/referenz/lamar-lowery-functional-training/feed is not a valid feed url. If you need a category feed use the archive url (i.e. http://www.chris-kettner.de/category/allgemein/ ) and add /feed/ to it:
http://www.chris-kettner.de/category/allgemein/feed/
If you need a feed of all portfolio entries use this url: http://www.chris-kettner.de/feed/?post_type=portfolio
Best regards,
PeterMarch 16, 2014 at 11:55 am in reply to: For WPML language switching breadcrumbs problem (for moderators) #238262Hey george!
We’re not aware of a conflict and no other theme user report this issue. I can’t reproduce it on my test server too. We’ll monitor the support forum though and if other users can reproduce this issue we’ll look into our code.
Regards,
PeterHey!
You just need to insert some content into the “Marker Tooltip” field and then a new option (a checkbox) will appear where you can select if the tooltip should be opened or closed by default: http://www.clipular.com/c/4537357877379072.png?k=_jhSP0lkBqarY2CfXZu6dS7VLp4
Best regards,
PeterHi!
Please try to insert this code into the quick css field to hide the line breaks:
div.wp-caption + br{ display: none; }
Cheers!
PeterHi!
Please revert the change Josue suggested in his post and insert this code:
add_filter('avf_title_args', 'fix_blog_page_title', 10, 2); function fix_blog_page_title($args,$id) { $pt = get_post_type( $id ); if('post' == $pt){ $blogpage_id = avia_get_option('blogpage') $args['link'] = get_permalink($blogpage_id); } return $args; }
into the functions.php file of your child theme. If you don’t use a child theme insert the code into enfold/functions.php at the very bottom. Make sure that the blog page option is set on the theme option page (Enfold > Theme Options).
Regards,
PeterMarch 15, 2014 at 4:47 pm in reply to: Enfold Portfolio Categories not working correctly with Breadcrumbs #238079Hey!
Afaik the portfolio entries do not show the portfolio categories in the breadcrumb but they just link back to the portfolio grid page. I.e. if you go to the demo page: http://kriesi.at/themes/enfold/portfolio/portfolio-3-column/ and you click on “Single Portfolio: 2/3 Slider” the breadcrumb will look like: “You are here:Home / Portfolio / Single Portfolio: 2/3 Slider”. If you want to display the category/ies instead of the portfolio grid page in the breadcrumb insert this code into the parent/child 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'); }
Cheers!
PeterHey!
Auf der Startseite wird nicht die “Blog” widget area angzeigt, sondern die “Frontpage” widget area. Wenn du stattdessen die “Blog” Sidebar anzeigen möchtest öffne bitte index.php und lösche diese Zeile:
if(is_front_page()) $avia_config['currently_viewing'] = "frontpage";
Best regards,
PeterHey addwebtoday!
When I checked the source code of your website I noticed you sometimes use the thumbnail version of an image as background image. I.e. a section uses this image: http://sc.preview.addwebtoday.com/wp-content/uploads/2013/04/Ft-Meyers-Beach-Plastic-Surgery-300×195.png as background. However the 300×195 prefix in the image url tells me it’s a thumbnail version of this image: http://sc.preview.addwebtoday.com/wp-content/uploads/2013/04/Ft-Meyers-Beach-Plastic-Surgery.png (with a resolution of 1000x650px instead of 300x195px). Make sure all background image urls point to the original, high resolution image and not to a thumbnail version of the image. In addition I recommend to use images with high resolutions – i.e. an image with a resolution of 1000×650 will appear blurry if you want to view it with a full hd screen. I recommend to upload the images with a resolution of 1920px or more.
Best regards,
PeterHi MindSpark!
Did you try the the “Masonry Gallery” element? It can be found in in the “Media Elements” tab: http://www.clipular.com/c/5746698932453376.png?k=_r4HCx5s-vW9tQtgn8V8MayQQTY
Best regards,
PeterMarch 15, 2014 at 1:42 pm in reply to: Language flags from WPML at the top header right disappeared after update #238021Hey!
Please insert this code into the quick css field to change the position:
.sub_menu { float: right; right: 15px; }
Best regards,
PeterHey!
You can try this css code to hide the logo:
.header-scrolled .logo a > img{ opacity: 0; }
Regards,
PeterMarch 15, 2014 at 12:52 pm in reply to: I just updated my theme and feature images and testimonials broke… #238013Hey!
I fixed the js error. Your donation link url is invalid because an hash value must not contain a / character. This character broke our smooth scroll script. I now included a check in our script which validates the url before it parses the hash value.
Regards,
PeterMarch 15, 2014 at 12:07 pm in reply to: 2.6 Transparent header doesn't work if custom background header image is set #238009Hi!
Yes, the background image will still be active even if you activate the “transparent” header option. This is not a bug but intentional because many users use the background image to add a transparent png/gif pattern to the header and they also want to use it with the transparent header option. If you don’t want to display the background image at all please insert following code into the quick css field:
#top .header_color.av_header_transparency, #top .header_color.av_header_transparency .header_bg{ background-image: none; }
Regards,
PeterMarch 15, 2014 at 11:47 am in reply to: Language flags from WPML at the top header right disappeared after update #238005Hi!
You can’t display the social icons ahead of the main menu but you can display them after the main menu items (select the “Display in main header area” option in the “Header Social Icons” dropdown). We may add additional options in the future however because of performance, etc. reasons we’ll wait if more users request such an option before we implement it.
Please post a link to your website. I’ll check why the language switcher is displayed on the left side.
Regards,
PeterMarch 15, 2014 at 11:32 am in reply to: Enfold Portfolio Categories Not Showing in Sorting Menu #238004Hi!
Please update the theme to version 2.6.1. You’re using version 2.4.2 which is not fully compatible with WP3.8.1 (see bug report thread: https://kriesi.at/support/topic/enfold-portfolio-not-working-after-wordpress-3-8-update/ ).Best regards,
PeterHey!
I can’t access the admin page because the server requires an authorization. Please note that you must not block the wp-admin folder access because the wordpress ajax api requires some files located within the wp-admin folder (i.e. wp-ajax.php) and if you block the access to the directory the ajax calls will fail and some features and/or plugins (i.e. woocommerce) won’t work.
Best regards,
Peter -
AuthorPosts