Abel Rogers
Forum Replies Created
-
Hi,
Am getting similar problem with lodash undefinedUncaught ReferenceError: lodash is not defined
at Object. (blocks.build.js?ver=3.6.2:1:8168)
at t (blocks.build.js?ver=3.6.2:1:101)
at Object. (blocks.build.js?ver=3.6.2:1:8121)
at t (blocks.build.js?ver=3.6.2:1:101)
at Object. (blocks.build.js?ver=3.6.2:1:7938)
at t (blocks.build.js?ver=3.6.2:1:101)
at Object. (blocks.build.js?ver=3.6.2:1:1113)
at t (blocks.build.js?ver=3.6.2:1:101)
at Object. (blocks.build.js?ver=3.6.2:1:990)
at t (blocks.build.js?ver=3.6.2:1:101)from the console inspector, the build file problem starts here
, function(e, t) {
e.exports = lodash
}
Have disabled all cache and minification to make sure not that, seems to have broken only with latest wordpress updateCurrent pages are ok, but cannot add new ones or edit old.
Could you please take a look at the issue?
Thanks
ok, found it,
/assets/css/soliloquy.css
there is the @media class with display:none
put the following in your stylesheet..
/*override soliloquy default*/ @media (max-width:600px){.soliloquy-container .soliloquy-caption{display:block !important;}}
BUMP BUMP. Having exact same issue, presume it’s a css media query change, but can’t find it.
Any ideas? Have fully licensed copy.
Forum: Plugins
In reply to: [Any Mobile Theme Switcher] Remember user choiceAs simple as that. Yes, looking at it, that is that is required really.
Thanks
Forum: Plugins
In reply to: [Any Mobile Theme Switcher] Remember user choiceReverted back to v1.1 and all works fine now, but using $_COOKIE instead of $_SESSION makes far more sense to me too.
Could you paste what changes you made and will apply myself.
Presume majority of changes are after line 91 of any-mobile-theme-switcher.php??
thanks
Forum: Plugins
In reply to: [Any Mobile Theme Switcher] Remember user choiceHaving same issue.
this used to work until i upgraded to 1.2
Looking to revert back to v1.1
Forum: Fixing WordPress
In reply to: Use tags elsewhere?This is a very brutal solution:
$user = get_userdata($user); $authordata = get_userdata($user_id); echo '<img src="' . get_option('siteurl') . '/wp-content/uploads/userphoto/' . $user->user_login . '.thumbnail.jpg" />';
Can’t really recommend it… but it works!
Forum: Fixing WordPress
In reply to: Use tags elsewhere?Am also looking to do exactly the same thing!
It seems to draw the required info. from global $authordata but don’t know how to reset this for each user to display the relevant photo for each user.
Help!:)