Rahul Ramesh
Forum Replies Created
-
Yes I did send a bug report and has mentioned this thread as well. I am waiting for a reply from them now ??
Ok, I tried to access via the link you gave me and now this happened:
https://ghosthut.com/wp-content/uploads/2015/02/Screenshot_31.pngYes, it is enabled. I can update plugins via centralized site management but I cannot write posts nor save them as draft, which redirects me back to my site admin panel. It is kind of weird.
Also, here is one more screenshot. I think this shows that JSON API is connecting properly as all my categories and all are getting synced with WordPress.com
https://ghosthut.com/wp-content/uploads/2015/02/Screenshot_21.pngHi, I tried reconnecting and disabling the plugin. Now when I click on “Add New Post” in wordpress.com it redirects me back to my admin panel. I am contacting support now. Also here is a screenshot of the debugging page:
https://ghosthut.com/wp-content/uploads/2015/02/Screenshot_11.pngForum: Plugins
In reply to: [Better Font Awesome] How to hide Icon button in Tiny MCENever mind I was able to remove it by altering this code:
` // Initialize BFA library.
$args = array(
‘version’ => isset( $options[‘version’] ) ? $options[‘version’] : $this->option_defaults[‘version’],
‘minified’ => isset( $options[‘minified’] ) ? $options[‘minified’] : ”,
‘remove_existing_fa’ => isset( $options[‘remove_existing_fa’] ) ? $options[‘remove_existing_fa’] :”,
‘load_styles’ => true,
‘load_admin_styles’ => true,
‘load_shortcode’ => true,
‘load_tinymce_plugin’ => false,
);
`Thanks ??
Forum: Plugins
In reply to: [Comments - wpDiscuz] Output some data before comment form and smilieysAlso, is there any chance for the following features to be incorporated in future releases:
1) @mentions
2) emojis (predictive emojis).
3) option for google nocaptcha recaptcha (optional alternative to your existing recaptcha).Forum: Plugins
In reply to: [Comments - wpDiscuz] Any support for emoticonsHmm, well can you think about including @mentions and emoticons in the next major release? I think those two are a little fundamental when it comes to articles with more than 300 comments and all.
Also it inclusion of Google’s new recaptcha as an optional alternative to the current captcha would be helpful.
Forum: Everything else WordPress
In reply to: Server configuration of WordPressIs it OK to have 3 moderate traffic (2000 visits per day) WordPress instances running on HHVM? Will there be any memory problems like running out of RAM or so?
Also which VPS are you using?
Forum: Everything else WordPress
In reply to: Server configuration of WordPressYa I have heard about HHVM, restarting is not a problem we can automate restart using supervisor and use php fpm as a fall back in case of an HHVM crash.
But problem is that, it is explicitly mentioned in the HHVM documentation that it might not be compatible with all WordPress plugin and themes.
Have you experienced any such problems? Any plugin or theme compatibility issues?
Forum: Everything else WordPress
In reply to: Server configuration of WordPressYa that tutorial covers basic aspects for nginx, which I always follow, thanks. I have not tried memcached though. So if you are to advise some one on a thumb rule, which one would u suggest to go along with nginx? Varnish, memcached or redis.
Let’s say am talking about a VPS with SSD drive, 1 GB ram and one core processor running a WordPress instance with 4k views and 100 comments per day. Its using nginx, fast CGI php and xcache.
Also would you suggest enabling nginx page speed module? some really advise against this, arguing that it consumes a lot of memory.
Thanks for sharing your thoughts…
Forum: Plugins
In reply to: [Comments - wpDiscuz] show the user avatar – issueI replaced the get_avatar function with get_wp_user_avatar in the comment TPL file of the plugin. I didn’t user users ultra or anything because as far as I feel its better not to depend on one plugin for handling everything. After a couple of years if the plugin is depreciated it will be really hard to export data.
For wpdiscuz my suggestion is not to inherently support profile plugins, as there are a lot in the wp repository, but to to provide options in the admin panel to use necessary hooks for avatars, profile links etc. Example, if there is an option to specify the avatar hook in admin panel, people can simply specify “get_wp_user_avatar” or “get_avatar” or anything depending on their site architecture and it might make it easy for the developers of wpdiscuz to keep pushing updates without worrying about other profile management plugins. Its just a suggestion.
Forum: Plugins
In reply to: [Comments - wpDiscuz] show the user avatar – issueAhh, it is fine I did make it work, just some function alterations did the trick ??
Forum: Plugins
In reply to: [Comments - wpDiscuz] show the user avatar – issueIs it possible tell where to alter the codes or the logic to alter the code, I can add the code, I know this is site specific, but do try if possible.
ThanksForum: Plugins
In reply to: [Comments - wpDiscuz] show the user avatar – issueI found some lines in the plugin, are these the one to edit?
$wc_comm_author_avatar = $this->wc_helper->get_comment_author_avatar($comment); $wc_profile_url = $this->get_profile_url($user);