Forum Replies Created
-
AuthorPosts
-
Glad we could help. Let us know if you have any other questions or issues.
It will show that there is an update yes. It will never update without at least you clicking a button however :)
Hi!
What page on the site *should* that search pull up? WordPress built in search isn’t great but it could also be that the page in question doesn’t have any term to connect your search to it in its body.
Cheers!
DevinHi!
Try creating a duplicate of that page but without the facebook wall at the bottom. There seems to be a delay in the masonry script getting loaded/processed and it would be a quick item to rule out.
Best regards,
DevinHey Jamie A!
No I don’t think so. Kriesi has the sidebar hidden on mobile and as far as I know its forced redirected otherwise.
I mentioned it to him some time ago but I’ll ping him on the issue again :)
Cheers!
DevinYou would need to use a different display of the video. In order for it to be fullscreen it must be able to hide some of the edges for all the various screen sizes.
Hey!
The cropping is handled by WordPress based on the dimensions set in the functions.php. You can check that file or use this plugin to see their dimensions and crop settings: http://wordpress.org/extend/plugins/simple-image-sizes/
It will take the longest edge and shrink the image from there if no crop is set which can make very tall or very wide images seem to load in very poorly cropped but its not a theme option we can adjust unfortunately.
Regards,
DevinHey gabytivi!
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:
.woocommerce-page .button { background: #000 !important; border: 2px solid #444 !important; } .woocommerce-page .button:hover { background: #fff !important; border: 2px solid #444 !important; color: #000; }
Change the color codes as needed to get the colors you want.
For the social icons I don’t know of any plans to add them in as an element right now no. You could add in icons with links to your pages using the icon element or buttons depending on the style you want.
Cheers!
DevinAugust 18, 2014 at 2:27 pm in reply to: Woocommerce Product Finder results page has no "search results" title #305744Hey charger70!
The demo for the plugin and the results on your site are the same from what I can see. Both show the search results page with the products shown under.
Regards,
DevinHey!
The only other thing I can think of to try would be to try and edit a page in an incognito/private window so that the cache is clean and there are no outside conflicts.
If that works then clearing your browser cache for the site on the backend would fix the issue for you.
Best regards,
DevinHey!
As long as the $template_url is defined then yes that looks correct.
Best regards,
DevinHi!
That *shouldn’t* be needed but if its working for you its a good workaround.
Regards,
DevinHi!
The browser is trying to find the first anchor in the page and it ends up on the #top anchor which is used to scroll the page to the top of the window when the user has scrolled down.
So removing it will also remove that ability but will also prevent a lot of the theme css which uses the top ID as part of its selectors.
Regards,
DevinAugust 18, 2014 at 6:07 am in reply to: how to: run a video ad/interstitial before home page displays? #305572Hi charger70!
There is probably a plugin out there that does something like it though I’ve not tested or really looked at any personally. Just be aware that more and more browsers are preventing autoplaying videos on sites so it could cause issues.
Cheers!
DevinAugust 17, 2014 at 10:11 pm in reply to: How to Disable Enfold creating Media Image Sizes ?? #305502If you want to remove the images from being created then it isn’t drastic at all. Its simply the next step in what you would do to remove a part of the themes normal functionality to fit your needs.
Glad we could help. Let us know if you have any other questions or issues.
Glad we could help. Let us know if you have any other questions or issues.
Hi!
That can not be as its needed to create the fullsreen effect. The theme needs to be able to crop and overlap the site elements depending on the screen size so that it always appears edge to edge.
Regards,
DevinHey Denis!
Yes unfortunately we don’t have a forum specific search right now. If you don’t find the topic on our documentation http://kriesi.at/documentation/enfold/ you can also try doing a google search with the question and include “for Enfold”. It often times will give a better result than the forum search since Google has a better algorithm anyway :)
Best regards,
DevinHi aconnors!
We don’t have any recommendations for something like that right now. It depends on what you are looking for in the “app”, its functions, capabilities etc.
Asking on the general WordPress forums might get you better results or maybe try a consultation with a Web Dev studio or with a freelance developer at Codeable.io
Best regards,
DevinAugust 17, 2014 at 7:42 pm in reply to: New to Enfold, unable to get any slide shows to work #305471Hey isnick36!
It sounds like its an issue with a lib on your server. I found this stack overflow which sounds like the same error http://stackoverflow.com/questions/10338234/php-5-4-after-install-preg-match-compilation-failed-unknown-option-bits-s
If you talk to your hosting provider and show theme the error and that topic they should be able to make the updated needed to get WordPress core able to do its thing when setting things up.
Cheers!
DevinHi debenm!
Yes the file to be uploaded should still be prepared by Fontello which allows you to upload your own icons through the site to be created into a zipped package.
See: http://kriesi.at/documentation/enfold/adding-your-own-icon-fonts/
Regards,
DevinGlad Yigit could help. Let us know if you have any other questions or issues.
You could try removing the entire set of image sizes from the functions.php just above that line which is where they are defined:
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider $avia_config['imgSize']['featured_large'] = array('width'=>1500, 'height'=>630 ); // images for fullsize pages and fullsize slider $avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns $avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>684 ); // images for portfolio entries (2,3 column) $avia_config['imgSize']['magazine'] = array('width'=>710, 'height'=>375 ); // images for magazines $avia_config['imgSize']['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); // images for fullscreen masonry $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );
Though it shouldn’t be needed it is the line by line settings for what image sizes are loaded into the avia_config array.
That screenshot shows the function *not* commented out. That would mean it is still running and would definitely mean the images would be generated on upload.
The function needs to be commented out. You can comment out php by adding // before the line, /* before and */ after or you can simple delete the function.
Hey Carsten!
It depends on what you are using to translate the site. Is it a secondary install with everything in another language, going to use google translate, WPML or some other plugin?
Regards,
DevinHi!
The only images that should get uploaded in the old folder would be those imported with the dummy data. Otherwise its using the native WordPress image functions.
All of the theme image sizes come from the function highlighted above so once its disabled they should no longer be activated on uploaded unless there is something else keeping them live like the simple image sizes plugin.
You will still have the regular WordPress thumb sizes created unless you further disable those (thumb and medium).
Best regards,
DevinHi!
In this case no. However what you can do is copy the function to your functions.php file in your child theme and edit it there. Because the functions are wrapped in a function_exists check your child theme functions will load first and the parent will not.
Regards,
DevinHi bethiebfit!
Watch this video on updating which does the same thing: https://vimeo.com/channels/aviathemes/67209750
Regards,
DevinHi wolfdogg!
I’ll close the topic :)
Cheers!
Devin -
AuthorPosts