Forum Replies Created
-
AuthorPosts
-
Hi Chrisidonner!
Thanks for using Enfold. Try deactivating all of your plugins and make sure your using Enfold 3.0.4 and try it again.
If your still having problems then send us a WordPress login and we’ll take a look.
Cheers!
ElliottHey kristenangel!
Add this to your custom CSS.
.category-green .blog-author, .category-red .blog-author { display: none !important; }And change “green” and “red”, etc etc, to whatever categories you want to hide it on.
Best regards,
ElliottHi!
Hmm, I’m still not sure I understand what the problem is. I clicked around your pages on IE11 but didn’t see anything out of the ordinary. Can you take a screenshot and highlight what the problem is?
Cheers!
ElliottDecember 29, 2014 at 9:21 pm in reply to: Header Secondary Menu CSS – Responsive Issue | Creates "2 Offset Header Rows" #372813Hey garycedar!
Add this to your custom CSS.
@media only screen and (max-width: 767px) { .responsive #header .sub_menu, .responsive #header_meta .sub_menu > ul { position: absolute !important; top: 1px !important; right: 0px !important; } }Regards,
ElliottHey stewroids!
Around line 124 in /enfold/includes/helper-main-menu.php you should see this.
'menu_id' => $avia_menu_class,Add this on the next line.
'menu' => ( is_page(321) ? 'special' : null ),And then change “321” with the ID of your page you want to change the menu on and “special” with the name of your menu.
Best regards,
ElliottHi godixital2728!
It looks like your using Enfold version 2.9.2. The latest version is 3.0.4. Updating to the latest version should fix this.
See here for updating via FTP, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.
Best regards,
ElliottHi a00109943!
You can change that on line 114 in /enfold/includes/loop-index.php.
$link = get_author_posts_url($post->post_author);Best regards,
ElliottHey thecszone!
I checked your link but it doesn’t look like your using Enfold. Go ahead and switch back to Enfold and take a screenshot highlighting the area your wanting to edit and we’ll give you some CSS to use.
Regards,
ElliottDecember 29, 2014 at 8:22 pm in reply to: Sidebar menu disappearing when having filter activated. #372786Hi p_lo84!
I checked around your pages but none of them had a sidebar or sorting tags. Send us a link to the exact page that is having the problem.
Cheers!
ElliottHi a00109943!
Go ahead and take a screenshot and highlight exactly what your trying to do so we can get a better idea.
Regards,
ElliottDecember 29, 2014 at 8:13 pm in reply to: Saving didnt work! Please reload the page and try again #372777Hey!
Did you try deleting it as suggested and then refresh your permalinks? Have you contacted your hosting provider regarding the mod_security rules?
Cheers!
ElliottHey!
2. I’m not sure what you mean by higher title bar. Are you just trying to increase the height of your color section? Highlight in your screenshot exactly what your trying to do so we can get a better idea.
3. The related posts will display when you have multiple posts with the same tag. If your referring to the related posts widget then you can display a sidebar or use our widget area element.
4. Add this to your custom CSS.
.single-portfolio .av-share-box { display: none !important; }Cheers!
ElliottHi hmsvictory!
Add this to the bottom of your functions.php file.
add_filter( 'avf_title_args', 'enfold_customization_single_title', 0, 2 ); function enfold_customization_single_title( $args, $id ) { if ( is_single() ) { $args['title'] = get_the_title($id); } return $args; }And then comment out line 130 in /includes/loop-index.php.
echo $title;Cheers!
ElliottHey Austrianweb!
Which plugin are you using for that?
Have you considered using the Events Calendar plugin? https://wordpress.org/plugins/the-events-calendar/
We have made sure it’s compatible with Enfold.
If you still want to use that plugin then try adding this to your custom CSS.
.fc-event { max-width: auto !important; }Or change line 119 in the /css/base.css file.
a { max-width: 100%; /* change this to auto */ outline: 0 none; text-decoration: none; }Regards,
ElliottHey!
Your code does not look like the code I posted and it sounds like your wanting to surround the bb-logo image with the link instead of the default logo.
Best regards,
ElliottHey!
It would look like this.
add_filter( 'avf_exclude_taxonomies', 'enfold_customization_exclude_taxonomies' ); function enfold_customization_exclude_taxonomies( $t ) { $t[] = 'slug1'; $t[] = 'slug2'; return $t; }Here is an example of how to check for a certain post type.
add_filter( 'avf_exclude_taxonomies', 'enfold_customization_exclude_taxonomies', 0, 2 ); function enfold_customization_exclude_taxonomies( $t, $pt ) { if ( $pt == 'portfolio' ) { $t[] = 'portfolio_entries'; $t[] = 'slug2'; } return $t; }Best regards,
ElliottDecember 29, 2014 at 7:19 pm in reply to: WooCommerce Multilingual product translation editor not showing #372752Hey!
Send us a WordPress login and we’ll take a look.
Best regards,
ElliottHi!
Not sure if it is the best way but you could copy all of the contents of the file and paste it into the bottom of your child theme functions.php file and then remove the first line.
<?php if ( ! defined( 'AVIA_FW' ) ) exit( 'No direct script access allowed' );Cheers!
ElliottHey!
2. A color section should not be hiding the title and breadcrumbs. Are you sure you did not disable the title and breadcrumbs when editing the page?
3. You can display comments on a page by dragging the comment element to your page content in the advanced layout editor.
4. The portfolio posts should not have the social share section by default. Did you do a customization?
Regards,
ElliottDecember 29, 2014 at 6:58 pm in reply to: Jumping to an other 'spot' on the same page within Enfold using menu-items? #372743Hey!
I did not see any sections setup yet on any of your pages. Go ahead and follow kriesi’s instructions and setup some color sections on your page and set an ID to each section. Next navigate to Dashboard > Appearance > Menus and create custom links to each section ID.
Best regards,
ElliottHi xyzb!
Can you send us a link so we can get a better idea of what’s going on? You can set your reply as private if you wish.
Cheers!
ElliottDecember 29, 2014 at 6:52 pm in reply to: Saving didnt work! Please reload the page and try again #372740Hi!
Hmm, your getting a 404 for the admin ajax script. I found this thread which may help, https://wordpress.org/support/topic/dont-have-permission-admin-ajaxphp-add-new-category.
Try deleting your .htaccess file and then update your permalinks in Dashboard > Settings > Permalinks. Also try contacting your hosting provider to see if mod_security is properly setup.
Best regards,
ElliottHi!
Try adding this to the bottom of your functions.php file.
add_filter( 'avf_exclude_taxonomies', 'enfold_customization_exclude_taxonomies' ); function enfold_customization_exclude_taxonomies( $t ) { $t[] = 'category'; return $t; }And replace “category” with the slug of your custom taxonomy that you wish to exclude.
Regards,
ElliottDecember 29, 2014 at 6:01 pm in reply to: Jumping to an other 'spot' on the same page within Enfold using menu-items? #372693Hi!
Go ahead and deactivate all plugins and send us a link and we’ll see what you have setup so far.
Best regards,
ElliottDecember 29, 2014 at 5:58 pm in reply to: Saving didnt work! Please reload the page and try again #372690Hey!
Send us a WordPress login and we’ll take a look.
Best regards,
ElliottHi!
Try adding this to your custom CSS.
.av-main-nav > li { margin: 0px 13px !important; } .av-main-nav > li > a { padding: 0px !important; }Cheers!
ElliottHi ghost85!
First off try deactivating all plugins. The scrollbar should go away when doing that so reactivate your plugins one by one to see which one is causing the problem.
If that does not help then try adding this to your custom CSS.
html.responsive, .responsive body { overflow-x: visible !important; }Best regards,
ElliottHi!
I didn’t see any issues with your site. If your having a specific problem then send us a link to the exact page and take a screenshot highlighting what is going on so we can get a better idea.
When I logged in though you are still using Enfold 3.0.2. The latest version is 3.0.4 so be sure to update.
Cheers!
Elliott-
This reply was modified 11 years ago by
Elliott.
Hi senso!
Thanks for using Enfold.
I’m not sure what you mean by “display as post meta infos”. Are you just trying to display some of your custom taxonomies? If so then you’ll want to try out our blog posts element. You can display posts from a custom taxonomy with that shortcode.
If that’s not correct then send us a link and take a screenshot highlighting what your trying to do so we can get a better idea.
Cheers!
Elliott-
This reply was modified 11 years ago by
Elliott.
Hi!
Yes, you should not have the aside option if your using Enfold. We do not have any CSS for asides either so I’m not really sure what your seeing. It’s most likely coming from a plugin so I would try deactivating them all.
Cheers!
Elliott -
This reply was modified 11 years ago by
-
AuthorPosts
