kilzac
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 4.2 upgrade: unable to update pluginsright, if you’re on the FTP account that usually shares the same credentials as your CP, then i have no clue. so far i have no problem using those default FTP accounts to update plugins.
the one that caused problem for me was this type of FTP account- username: “abc@domain.com”, with its allowed path set to “…/domain.com/public_html/” at the end.
i’ll leave this to someone who really knows and have figured out whats the exact problem with the new updates.
Forum: Fixing WordPress
In reply to: 4.2 upgrade: unable to update pluginsi had the same problem but managed to get it working again. i’m still trying to find out exactly whats wrong with FTP credentials that used to worked fine all these while, and this new version 4.2.
do try this: if you’re using add-on FTP accounts, try checking if you have “public_html/” at the end of the allowed path. if yes, try recreate the FTP account, minus the “public_html/” in the allowed path and try again.
awesome fix @ivomokros! i’ve manage to get it working again with CF7 4.1 based on your guidelines. this will do for now while waiting for the plugin author to officially fix this in the next version.
Forum: Plugins
In reply to: [Easing Slider] Can't drag to reorder the imagesUnderstood, appreciate it. i’m not good enough with jQuery, so i’ll leave this to you and your team.
Forum: Plugins
In reply to: [Easing Slider] Can't drag to reorder the imagesgreat. if you could provide a quick fix in the associated file(s) before you release the next version, do post them here.
Forum: Plugins
In reply to: [Easing Slider] Can't drag to reorder the imagesAhh yes it works if i have 6 slides, once the 2nd line is occupied by one thumbnail. looks like we’ve found the problem.
Forum: Plugins
In reply to: [Easing Slider] Can't drag to reorder the imagesI have only 4 slides in the slider. the sorting used to work fine but i cannot recall which version the plugin was at when i first started developing my client’s website. i have been keeping the plugin up-to-date all these while but i’ve not been using the sorting function. until i read about this issue from Matthew, i decided to check.
i have just tried your plugin on a clean WP 4.1 installation, with just 2 images, and the sorting function isn’t working either. i’ve even disabled all other plugins except Easing Slider and used stock themes like TwentyTwelve and TwentyFifteen and the thumbnails still won’t drop into any spot when dragged. even tested with both Firefox and Chrome browser.
Forum: Plugins
In reply to: [Easing Slider] Can't drag to reorder the imagesi can confirm this problem exists for version 2.2.0.4 and WP 4.1. dragging the thumbnails to re-order does nothing at all. they’re drag-able but they don’t fall into position.
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Replacement for AddThisvery well said @robmcclel. i was not gonna further comment on this since you guys seem like you are going ahead with this new implementation regardless of how many users have disagreeed to this. all i’m gonna say is, no matter what kinda new advanced API you’re gonna throw out at us, its not making our lives as developers any easier. we want the existing and easy way of implementing your plugin to stay. thats it, full stop.
Forum: Plugins
In reply to: [List category posts] customfield_display in custom templateYup, i can confirm it works too. many thanks AACT!
Forum: Plugins
In reply to: [WordPress Share Buttons Plugin – AddThis] Replacement for AddThisI have to agree with jamk. the new update is starting to look bad, and just not ideal for us web developers who has many different customizations with the Addthis toolbar on so many WordPress websites.
Infact I am still controlling the settings from within the WordPress Admin (touch wood – no problem arises so far) and not from your Addthis Dashboard, with fear that the toolbars will not appear on non-single post/page templates. for example, if i want the toolbar to appear only once at the footer of the category, archive, search, and custom-posts templates, is it still possible with the latest version?
Forum: Plugins
In reply to: [List category posts] customfield_display in custom templateYes, i’d like to know too. i’m having the same problem with the latest version and had to downgrade to 0.50.3 for one of my site just because it needs to display custom fields in a custom template.
can anyone who knows, shed some light on how to fix this?
@srijith V:
I did as you’ve suggested; revert to stock/clean twentytwelve theme, but with the_excerpt_rss and meta description mod, disabled all plugins and only ran Addthis. didn’t work either.
then i deactivated, and reactivated the Addthis plugin and there, the buttons reappeared. then i started to turn back on all my others plugins and no more problems after that even after returning to the modified theme i was working on.
i can’t say for sure if its plugins conflict as i run only a few popular plugins like Contact Form 7 and the other websites that were having the same problem, don’t even share the same set of plugins.
Nevertheless, its solved for now.
Thanks for the tips.
@srijith V:
Both the 3.5.10 and 4.0.1 are having this issue. infact this has happened to some of my previous work, so i believe Addthis version 3.x.x onwards might be having this issue. i just didn’t bring it up earlier cos with some luck, and by pressing around and saving the Addthis settings could somehow get the Javascript to re-appear. but this time, no such luck.
i’m using WordPress default “twentytwelve” theme for further customizations. i run the following codes in the <head> :
<?php if ( is_single() || is_page()) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<meta name=”description” content=”<?php the_excerpt_rss(); ?>” />
<?php endwhile; endif;?>once i remove <?php the_excerpt_rss(); ?>, the Javascript re-appears without me having to manually push it into the <?php wp_footer(); ?>
Thanks niknetniko.