Forum Replies Created
-
AuthorPosts
-
As a test I quickly ‘fixed’ a sticky sidebar by dropping this code in the Google-analytics box in the theme settings :)
Ofcourse you _should_ play nice and put this script somewhere in a file where this javascript belongs… and correctly use jQuery instead of linking to it again…<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> <script> $(function() { // grab the initial top offset of the navigation var sticky_navigation_offset_top = $('aside.sidebar_left').offset().top; // our function that decides weather the navigation bar should have "fixed" css position or not. var sticky_navigation = function(){ var scroll_top = $(window).scrollTop(); // our current vertical position from the top // if we've scrolled more than the navigation, change its position to fixed to stick to top, // otherwise change it back to relative if (scroll_top > sticky_navigation_offset_top) { // change the 60 to the height that _YOU_ need... $('aside.sidebar_left').css({ 'position': 'fixed', 'top':60}); } else { $('aside.sidebar_left').css({ 'position': 'relative' }); } }; // run our function on load sticky_navigation(); // and run it again every time you scroll $(window).scroll(function() { sticky_navigation(); }); }); </script>
Want to know more? I found the demo here:
http://www.backslash.gr/content/blog/webdevelopment/6-navigation-menu-that-stays-on-top-with-jqueryYou probably have your browser zoomed in.
Press CTRL-0 or change the zoom to 100%. That will fix i.
May 11, 2015 at 4:39 pm in reply to: Avia Layout Builder won't load on some Macs/PCs … but on others it's fine??? #442541Found a solution
Apparently sometimes the WP-updates fail to minify everything correctly.
https://wordpress.org/support/topic/visualtext-editor-doesnt-work-wp422-any-browser-any-theme
https://wordpress.org/support/topic/so-it-isnt-bad-to-keep-script_debug-true-in-a-production-blog-right <- this fixes it tooA reupload of all files fixed this weird problem.
What I did:
1) my site is installed in a subdirectory called /site
2a) Copy every file to a new directory /site2
2b) Copy fresh WordPress files, fresh Enfold files, fesh plugin files… through FTP over the old /site2 files
3) rename /site to /site3
4) rename /site2 to /siteHappy Enfolding!
NOTE: probably only step 2b is needed to make this work :)
- This reply was modified 9 years, 6 months ago by Pixelbits.
May 11, 2015 at 11:43 am in reply to: Avia Layout Builder won't load on some Macs/PCs … but on others it's fine??? #442367Same problem here, 2 pc’s. Both Chrome. One works, the other does not. I came here too look for answers…
Funny thing: When starting Firefox on the non-working pc: it did not work there also…I see errors when loading the page though:
“Uncaught TypeError: undefined is not a function”
and when i press the advances layout builder I get “post-new.php?post_type=page:539 Uncaught ReferenceError: switchEditors is not defined”I’m investigating further!
*update:
– cleared caches and all from working PC: does not work there anymore :)
– Updated Enfold to latest available
– updated Gravity Forms to latest available
– disabled Yoast SEO (going to disable all other plugins one by one now).Seeing new errors when disabling plugins – just going to mention them here for whatever it is worth:
– Uncaught TypeError: Cannot set property ‘mixin’ of undefined
– shortcode-ui.min.js?ver=1.9.8:1 Uncaught ReferenceError: Backbone is not definedAfter disabling Gravity forms: the editor worked better…. (not completely thought)
This error popped up:
– Uncaught TypeError: Cannot set property ‘isTouchDevice’ of undefinedUpdate 12:12h:
After a minute or two doing nothing I saw this popping up in the Network tab of chrome:jquery.js?ver=1.11.2:4 XHR finished loading: POST “http://site.nl/site/wp-admin/admin-ajax.php”.Update 13:35h:
Copied everything locally. Backup/restore DB: everything works locally.
So for me the problem is not the latest Wp version or the latest Enfold version.
I now have to look for other weird errors :(F.Y.I.: I’m using a child theme.
- This reply was modified 9 years, 6 months ago by Pixelbits. Reason: Small update
November 21, 2014 at 4:56 pm in reply to: SOLVED: Table not aligned anymore after update 4.01 and 3.03 Enfold. #355293Updated again – problem gone… Delete this thread please….
It can be done in CSS.
I gave the container a class: Startpagenewsslider
Added margins around it and moved the icons in there:.startpagenewsslider {
margin-left: -80px;
padding-left: 80px;
margin-right: -80px;
padding-right: 80px;
}.avia-slideshow-arrows.avia-slideshow-controls {
width: 100%;
margin-left: -47px;
}Changed the arrows a little (made them smaller)
#top .avia-slideshow-arrows a {
display: block;
position: absolute;
width: 40px;
height: 60px;
line-height: 32px;
font-size: 20px;
}#top .avia-slideshow-arrows a.next-slide {
right: 33px;
float: right;
position: absolute;
display: block;
}August 9, 2014 at 1:37 pm in reply to: es_ES.po If you are not happy with the results BELLOW please do another search #301996This thread has some images on how to use Codestyling Localisation to rescan for translation-strings.
Pictures:
Scan files:
Edit MO file
Search for String:
Translate it and publish.
Yes; that was it. I used Codestyling-localisation plugin to rescan the themefiles. Then it found that in the theme-files BELLOW was changed to BELOW, but the languagefiles just weren’t up-to-date yet.
Now they are; and it works.
So if you want to fix this:
1) create new .PO translationfiles with the CodestylingPlugin (‘scan’ or Dutch:’inlezen’ )
2) translate this sentence yourself
3) publish the .MO
4) see translation in effect.Might have something to do with the languagefiles and BELOW and BELLOW in the English translation …
I’ve searched this forum and also looked at the other solutions, but this string IS translated in the Dutch PO/MO files, but it just is not translating in the theme. (NOTE: I’m using a child theme, but I’ve got no search*.php in there).
One of the offered solutions was to use codestyling localisation (https://kriesi.at/support/topic/search-page-no-result-string-no-translation/) but that too did not fix the issue.
There must be something else wrong with this if more people have this same issue.(see this link)
Yes – my problem is solved.
My solution: I use a color-section and gave THAT a class trough the FUNCTIONS PHP change to enable a class for every element..
After that i’m fumbling in CSS with .MYCLASS > div > DIV:nthelement(1..4) etc
It works but it is unstable. One element more or less and I have to clean the CSS again. So if you ‘see’ Christian tell him there a people waiting for the colored columns :)Have a nice weekend.
Best pro-active moderators I’ve experienced (and I’m in _a lot_ of support-forums).
Can’t wait! Thanks for the quick reply!!
Hi Devin
I’m still looking for this. In the Enfold-Featurerequests there are several different questions on adding color to columns. Any update on the status of this?
It works
What I did now:
1) added custom CSS box to every element (as shown in other support topics).
2) added these classes to the color section:boxed entry-content-wrapper clearfix responsive container twelve.units centeredcolor
Probably could do without some, but too tired to check :)
3) added this to the custom style:
.centeredcolor{ float:none; margin-left:auto !important; margin-right:auto !important; } #greencol{ background-color: rgba(120, 255, 10, 0.9)!important; }
But…. it would be so much easier if there was a setting for the color sections :)
This topic can be closed :)
There is a new release 2.7.1 that should fix the problem. So best guess now: update.
May 3, 2014 at 7:23 am in reply to: I cannot see the contents in the Text Block after upgrading to WP 3.9. #259641May 2, 2014 at 10:46 am in reply to: Text Block / Tiny MCE Bug with WP 3.9 when editing in Chrome #259291..sorry – unrelated bug … forget what i said… :)
- This reply was modified 10 years, 6 months ago by Pixelbits. Reason: not related comment. - deleted :)
I had a similar problem – and I edited the user in WordPress and checked the option to disable the WYSIWYG-editor (+ save).
Right after that uncheck the option (+ save).Result: full editor is back.
Not working for you?
1) Check if there is a newer Enfold version and use that one. 2.7.1 supposedly fixes this problem.
2) Clear cache
2) CTRL-F5
3) Try a different browser to see if it is only browser related and post back here with info of what you see. Post screenshots.What else did I try (these changes did not solve it immediately but maybe are part of the solution)?
- Deleted my entire WordPress 3.9 files and re-copied them trough FTP.(EXCLUDE wp-config and wp-content!)
- Deleted my entire original Enfold 2.7 files and re-copied them trough FTP.
- I’m using the (unedited!) Enfold-child-theme; but try switching to the 2014 theme and check if that _is_ working.
- Edited WP-Config and made sure there are no empty lines after the last statement.
- Disabled all plugins Especially cache-plugins and minify options.
- Checked all .htaccess files for cache-plugin references and deleted those lines.
- This reply was modified 10 years, 6 months ago by Pixelbits. Reason: updated with releaseinfo of Enfold 2.7.1 version
Enfold Feature-Request voting! As it is: Kriesi has developed just a thing for that – although it isn’t for sale anymore:
http://aviathemes.com/plugins/avia-feedback-box/Just what the doctor ordered :)
This reply has been marked as private.When i share an Enfold-websitelink (EG: http://kriesi.at/themes/enfold/ ) on Facebook there is no choice for a logo-thumbnail. Facebook only gives three options which are images from the sliders?
So my questiuon is to ‘promote’ the logo image in a way that Facebook sees it as the image to show as a thumbnail.
Image-example of what i mean:
http://s8.postimg.org/ooquozpit/Prt_Scr_capture_9.pngI see this has been asked before in a different style, but i’d like a different hover effect for the portfolio items.
One where the description of the portfolio (or some text with a ‘more…’ link) displays over the portfolio item.Something like the startscreen here: http://www.redfactory.nl/themes/therestaurantclassic/
This is a very fancy – directional aware – css3 style:
http://codepen.io/anon/pen/scEBn- This reply was modified 10 years, 10 months ago by Pixelbits.
-
AuthorPosts