samb_nz
Forum Replies Created
-
Hey Sebastien,
Thanks for that. I managed to find a way by hooking into the History Adapter method. See below for anyone else trying the same thing.
The code below will update the addthis with the correct title & URL.
<script> try { History.Adapter.bind(window,'statechange',function(){ var title = jQuery('title').text(); addthis.update('share', 'url', window.location.href); addthis.update('share', 'title', jQuery ("title").text() ); addthis.ready(); // This will re-render the box. }); } catch(err) { console.log(err.message); } </script>
Hey Thanks Sebastien,
For others, it works on multisite, but you need to enable it per site, rather than on the network level.
Cheers.
Yeah @tracibunkers,
I used the .htaccess, which meant everything worked as normal in the wordpress admin.
@tracibunkers I also ended up using an .htaccess file in the wp-uploads dir that just redirects to the s3 bucket, and manually uploaded all my old media. That way I didn’t have to alter anything in wordpress, then this plugin takes care of any new files.
Hey @sforsberg,
That is a good idea, any other ideas on what you would do for media which isn’t images, such as pdf’s etc ?
Cheers.
Forum: Plugins
In reply to: [WP-PJAX] Page JumpCool as Pekz0r, let me know if you would like any help, I think your plugin is super useful.
Cheers,
SamForum: Plugins
In reply to: [WP-PJAX] Page JumpThanks @pekz0r,
Also, I couldn’t seem to get the page title to change on pjax load, should that be working ? – I saw some code in there regarding the title, but I am not sure if it is finished. Your feature list regarding being able to load different parts would be awesome.
Cheers,
SamForum: Plugins
In reply to: [WP-PJAX] Page JumpI worked it out, pjax has this property which you can change.
$.pjax.defaults.scrollTo = false;
I had to add this to the WP-PJAX.js.php within the plugin, going forward it would be nice to have it as an option in the admin.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] WYSIWYG Custom HeightYou might also like do to something like this if you want to target just the basic wysiwyg
[data-toolbar="basic"] iframe { min-height: 125px; }
@amity , thanks for you post, super helpful !!
Will suggest to plugin authors to add.
Forum: Plugins
In reply to: [Front-end Editor] [Plugin: Front-end Editor] Image issuesSo I am guessing this is still an issue :/ as inserting images would be very helpful ??
Forum: Plugins
In reply to: [Front-end Editor] [Plugin: Front-end Editor] Image issuesHey,
I am having the same issue with WP 3.2.1, is it working for anybody else ?