Jacques Letesson
Forum Replies Created
-
Forum: Plugins
In reply to: [AssetsMinify] AssetsMinify activated but not workingAlessandro,
Even when I do not enqueue main.scss, the plugin doesn’t seem to compile all my JS files as it should.
So right now, I’m a little bit lost…
When I click on “Empty AssetsMinify’s Cache” I got : http://mysite.com/client/xxx/wp-admin/client/xxxoptions-general.php?page=assets-minify&empty_cache -> Page Not Found.
I don’t understand why the plugin adds client/xxx after wp-admin/
Cheers,
Forum: Plugins
In reply to: [AssetsMinify] AssetsMinify activated but not workingI tried both with and without using compass.
Yeah the files that I enqueued using
registerScriptsare included in the page…Yes
main.scssis included in the page but it’s not compiled like it should.Thanks for your time and patience.
Forum: Plugins
In reply to: [AssetsMinify] AssetsMinify activated but not workingThe folder uploads is set to 777 and the am_assets folder has been created but nothing inside.
I deactivated all the plugins that I use but it doesn’t change anything.
Forum: Plugins
In reply to: [AssetsMinify] AssetsMinify activated but not workingThe only relevant error that I see in the log is this :
File does not exist: /var/www/vhosts/jacquesletesson.com/httpdocs/client/bea/wp-admin/client, referer: http://www.jacquesletesson.com/client/bea/wp-admin/options-general.php?page=assets-minify
In fact, it’s because I clicked the button Empty AssetsMinify’s Cache
I even tried with only scripts like that :
function registerScripts() { wp_enqueue_script( 'modernizr', get_template_directory_uri() . '/assets/js/vendor/custom.modernizr.js', array(), '1.0', false ); wp_enqueue_script( 'responsive-nav', get_template_directory_uri() . '/assets/js/responsive-nav.min.js', array('jquery-new'), '1.0', true ); wp_enqueue_script( 'responsive-tabs', get_template_directory_uri() . '/assets/js/responsiveTabs.js', array('jquery-new'), '1.0', true ); wp_enqueue_script( 'tiny-nav', get_template_directory_uri() . '/assets/js/tinynav.min.js', array('jquery-new'), '1.0', true ); wp_enqueue_script( 'fit-vids', get_template_directory_uri() . '/assets/js/jquery.fitvids.min.js', array('jquery-new'), '1.0', true ); wp_enqueue_script( 'ss-icons', get_template_directory_uri() . '/assets/webfonts/ss-symbolicons.js', array('jquery-new'), '1.0', true ); wp_enqueue_script( 'main', get_template_directory_uri() . '/assets/js/main.js', array('jquery-new'), '1.0', true ); wp_enqueue_script( 'jquery-new', '//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js', array(), '1.0', true ); } add_action( 'wp_enqueue_scripts', 'registerScripts');Forum: Plugins
In reply to: [WooCommerce] WooThemes Updater plugin link not workingWooThemes Updater plugin seems to be buggy ! It starts downloading but I got an error and the plugin is not activated.
The woothemes_updater folder only contains changelog.txt and a sub folder called classes, no woothemes_updater.php
Forum: Plugins
In reply to: [User Avatar] [Plugin: User Avatar] How to Integrate With front End UploadOk here is the trick…
Put this code in your function.php to allow User-Avatar to work with Theme My Login and be able to upload picture on the frontend as well.
function load_my_scripts(){ if(is_page('YOUR_LOGIN_PAGE_ID_HERE')){ wp_enqueue_script('thickbox',null,array('jquery')); wp_enqueue_style('thickbox.css', '/'.WPINC.'/js/thickbox/thickbox.css', null, '1.0'); } add_action('wp_enqueue_scripts', 'load_my_scripts');I add a conditional statement to be sure that thickbox won’t be loaded on other page that the one I use for display the profile editor.
Hope it helps.
Forum: Plugins
In reply to: [User Avatar] [Plugin: User Avatar] How to Integrate With front End UploadHi there,
Using User-Avatar with the amazing THEME MY LOGIN works fine !
I worked with wordpress for years now and I have to admit than Theme My Login is one of my favourite plugin so far ! What a nice piece of code.
However, when the user try to upload a new picture (front-end) the plugin (User-Avatar) try to open thickbox like in the backend.
<a href="http://mysite.com/wp-admin/admin-ajax.php?action=user_avatar_add_photo&step=1&uid=8&TB_iframe=true&width=720&height=450" title="Upload and Crop an Image to be Displayed">Update Picture</a>Now, I just need to find a proper solution to avoid that in the frontend when keeping this behaviour in the backend.
Cheers,
Jk_
Forum: Plugins
In reply to: [Post Types Order] [Plugin: Post Types Order] Problem with WPMLThanks for the update Phil ! Will look into it.
Best,
Jk_
Could I just use the sfc_publish_meta_box() function ?
Yeah ! I decided to use anyway because the problem was annoying me 🙂
Thanks for the update.
I had the same issue !
Last version in the trunk fixed that. I confirm.
However I had to comment out line 134 in sfc-base.php to avoid an error.
Thanks Otto, thanks Joe Hoyle.
Weirdly yesterday evening, everything was working properly and now the comments / count and the comments themselves are not displayed anymore.
Very clear answer ! It makes sense. Thanks.
1. You’re *only* going to see the FB Comments on the single post view. Not the home page or any place else.
Otto,
On my homepage, facebook comments are displayed ! However, the comments_number() is not accurate…
When I switch to single view, the count is ok.
Any chance to find a workaround to get the proper number of comment on the homepage ?
Cheers,
Jk_
Same problem here!
It works before, certainly something to do with a facebook update…