Forum Replies Created
-
AuthorPosts
-
Hello!
The theme comes with default widgets in the footer of your site. You can add a blank text widget into the footer widget area in Appearance>Widgets to clear it out.
Best regards,
DevinHi Niels!
1) I’m actually on the same version of Chrome on OSX 10.8 and I’m not getting the nudge on the content below the slider at all. Do you have any browser add ons or plugins running in chrome?
2) No, the only thing that you could do easily would be to change the color via css. But it would need to be done for that specific instance based on the page ID, the content ID and class selector and then each slide.
You could also use inline styling on each caption text and title but its a bit hacky. Kriesi hadn’t added a lot of options to the easy slider to keep it “easy” because you can do pretty much anything with the LayerSlider slideshows.
Regards,
DevinOkay, try changing the function to:
// WZ: For custom breakpoint mobile menu toggle // Make these Child functions load after Parent functions add_action( 'after_setup_theme', 'childtheme_late_functions' ); function childtheme_late_functions() { // Swap out Parent's js/avia.js for Child's js/avia.js add_action( 'wp_enqueue_scripts', 'childtheme_menu_breakpoint' ); function childtheme_menu_breakpoint() { wp_dequeue_script( 'avia-default' ); wp_deregister_script('avia-default'); wp_enqueue_script( 'childtheme-avia-js', get_stylesheet_directory_uri() . '/js/avia.js', array( 'jquery' ), 1, true); } }
Where is this on the site? I don’t see anywhere to hover over products.
Hello!
If you mean on the front end, where a user would be doing this then you would need to find a plugin or have one created for the task. The theme doesn’t have any mechanism in place to filter portfolio items other than by category.
Regards,
DevinHey!
What is the issue you are having on your site @chrisknittel? The icons I see are correctly linking.
Best regards,
DevinHey!
You would need to talk to the author of the plugin or their documentation. We really have no ability to support third party plugins.
Best regards,
DevinHey!
We are at somewhat of a stalemate unfortunately. Typically in the hierarchy of needs it goes theme>plugins and in this case something with that plugin is causing the theme’s script not to run. It isn’t another plugin, its the theme and the js error can actually be seen when the plugin is live if you view any page with an accordion with dev tools.
Cheers!
DevinOctober 14, 2013 at 11:58 pm in reply to: Cannot adjust the number of transition for the large LayerSlider #175342Hey!
Try disabling all other active plugins you have installed. The LayerSlider plugin is very popular and doing exactly what you’ve described has worked for all cases I’ve come across. So if there is a bug, it would be local to your install most likely.
Regards,
DevinOctober 14, 2013 at 5:41 pm in reply to: Layerslider working perfectly in preview…not on page… #175172Looks like it had to do with the images set for your other slides. The images need to be selected from your uploads and not from external resources.
So if you look at your second slide, I’ve removed the image and it works fine.
Hey Johnny,
Try following this video and install via FTP: https://vimeo.com/channels/aviathemes/64927356
Fully delete the theme first just so there are no conflicts with writing over the previously uploaded files. Also deactivate any plugins you may have active before uploading the theme so that there are no issues with a plugin conflicting with the install.
Regards,
Devin
Hi ganjou!
I’ve asked WooThemes to send a copy of Sensei over to Kriesi so we can take a look.
Cheers!
DevinHello!
The only reason posts get deleted is if they are duplicates and even then we usually just close a duplicate topic. Looking through your posts/topics I don’t see any that were deleted so not sure what happened.
As for the issue, you’ll need to use a robots.txt file to tell google and other search engines what not to index. See: https://kriesi.at/support/topic/google-indexing-the-enfold-theme-folders/ where Peter gives an example of the rules he uses.
Regards,
DevinHi erantdo!
Yes, it is possible but it’ll take a bit of work to achieve. What you would need to do is either use conditional logic to check if the user is on the homepage and if so set the menu variable to X (your choice) and if not on the home page then set it to Y (the default).
You could also have a different header.php file where the one used on the home page had the menu container hard coded in or the variable hard coded and the rest of the site used the regular header.php.
Neither solution is within what we can do via support however but a freelance developer should be able to do it within a couple of hours.
Regards,
DevinHi Liminalty!
Topics get closed automatically after no responses to prevent pulling up outdated topics. Performance with WordPress isn’t something that can be covered quickly. Its a pretty extensive topic because of how flexible WordPress is and how different plugins and themes are coded.
With Enfold, by itself there isn’t any major issue with its performance unless you are on a low end budget server which tend to be shared with hundreds of other sits all running on the same grid.
In general, you can use a caching plugin to cache your page data as well as minify the scripts the theme and plugins use. It all needs to be done manually but its the best way outside of upgrading your server to get better performance.
Cheers!
DevinHi ksakkos!
1) There isn’t currently an option to filter by tags so right now it isn’t doable.
2) Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top.single-portfolio .avia-post-nav { display: none; }
3) Search can be done from here: https://kriesi.at/support/ but the advanced search hasn’t gotten turned back on since Kriesi updated the site. You could use google via: site:http://kriesi.at enfold video
Using site:http://kriesi.at and then enfold $searchterm will give you at least a more specific way to search for Enfold Q and A.
We have a number of videos here: https://vimeo.com/channels/aviathemes and I’m trying to finish up some more for portfolios in the next few weeks.
Cheers!
DevinHi Matthijs,
I think your best route is to go the page>category route and use the WordPress navigation as the sorting for your various tiers and sub-elements. The category sorting/grid by itself doesn’t support what I think you are looking for.
Cheers!
DevinHey!
That could be the issue though I can’t say for sure without testing the plugin. If you aren’t using the advanced layout editor for the blog layout and try to not use the theme options for front page and blog page you may have better luck with it if that is what the plugin expects for the home/blog page location data.
Regards,
DevinOctober 14, 2013 at 4:00 pm in reply to: Can I overlay the menu on the slider (want the fullscreen slider effect) #175116Hey mvietz112!
While doable it would need to be done by a freelance developer to maintain full cross browser compatibility. The initial step will just be giving the background transparency but the position will still need a bit of adjustment:
.header_bg { background: transparent; background-color: transparent !important; }
Cheers!
DevinHi DesignerKen!
The post slider without the sliding effect is actually the post grid (code wise). So you could try doing it with css but it’ll be a bit of trial and error to get right. Lists aren’t overly difficult so it should still be doable.
You can add your own shortcode elements or add in replacements for the parent by adding a shortcodes directory to your theme and then adding in this function:
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
Regards,
Devin-
This reply was modified 11 years, 9 months ago by
Devin.
So you’ve added the new htaccess file changes to your wordpress installation as well as tried re-creating the icon list elements, clearing cache for your site and browser?
Hello!
Try doing as Ismael said and disable all active plugins. On the home page there are some plugins that are not loading on the other one and my guess is one of theme is causing a conflict with the javascript that runs the toggles.
Regards,
DevinOctober 14, 2013 at 3:24 pm in reply to: Want thumbnail image in Blog Posts content element for post with embedded video #175091I don’t know of any off hand but I’m sure there is something in the WordPress plugin repository that will work for you.
Kriesi is constantly working on new features for Enfold but with how flexible the theme is it isn’t as easy to add things in like with other themes. For the portfolio items there would need to be a new secondary field for video urls or something like that. Then iframe fixes for displaying them in a grid, cross browser compatibility etc. So it can take a bit of time :)
Otherwise let us know if you have any other questions or issues and we’ll do our best to help.
Regards,
Devin
Looking much better now. Checking with IE8 now I’m only getting the recent posts thumbnail issue which can be fixed by using:
.image_size_widget .news-thumb img { width: 36px; height: 36px; }
The icon is showing correctly and I’m not actually sure what you mean by menu not showing at certain sizes since again, IE8 can’t render media queries so the menu never gets css to tell it to hide.
Is it happening on native IE8 or an emulator?
Hi!
The two layouts are just that: two different layouts. With a sidebar you’ll get equal weight on the left and right and without it the weight moves to the center of the page.
The easiest way I can see to somewhat keep the layout of having the sidebar would be to remove the sidebar with css and increase the size of the main content area:
#top.page-id-402 #main .sidebar { display: none; } #top.page-id-402 .template-page.content.nine.alpha.units { width: 100%; border: 0; }
Cheers!
DevinHi thomrommens!
I’m not sure that would be easily doable actually. Right now the image type icon will be displayed if there is no featured image: http://kriesi.at/themes/enfold/blog/blog-grid/ but the hover icon comes from the effect across all image links. With related posts, its a different loop entirely.
If its something you really need done I would suggest a freelance developer who should be able to get the effect accomplished in a few hours.
Regards,
DevinHello!
The login doesn’t seem to work with the spelling provided. Another thing to try is deactivating all other plugins you have installed and see if that helps the contact form to working in general.
Also contact your hosting provider and see if there are any limitations on using php’s mail function (eg spam protection).
Best regards,
DevinOctober 13, 2013 at 4:50 pm in reply to: Layerslider working perfectly in preview…not on page… #174802Hello Claire!
The full set of documentation for the plugin is available from the LayerSlider plguin slides page. Just click on the Documentation button for a full breakdown of everything that the slides/transitions are capable above. It isn’t something we wrote but is a plugin included into the theme so we don’t have the answer to every question unfortunately.
My guess however is that there may actually be a conflict with a plugin on the site. So try disabling all active plugins except WooCommerce alone and then log out of WordPress and back in.
Then give the slideshow another test. Typically however Ismael is correct in how the plugin wants you to build your slideshows and each of those sections *should* be an individual slide. I’m not saying it won’t work, just explaining why it may not or that it may have issues.
Best regards,
DevinHello unclemurray!
You can and should use a plugin like this when moving domains: WP MIGRATE DB
WordPress and themes in general don’t have relative file name locations and changing everything in the database is the best way to move from one domain to another. Doing so with respect for serialized data (like the above plugin does) is needed for Enfold so that everything moves over correctly.
Even still you will likely need to tweak some things and re-do settings but it should be minor.
Regards,
DevinHello Everton Ramos!
See if this video helps: https://vimeo.com/channels/aviathemes/64927356
The initial steps for setting up the theme are the same when setting up a child theme (for Enfold). If you want to see an example of creating and installing the child theme see: https://vimeo.com/channels/aviathemes/67221517
Regards,
Devin -
This reply was modified 11 years, 9 months ago by
-
AuthorPosts