virgodesign
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Activity Log] Prevent logging if User Switching is runHi @robert681,
Thanks for the question. Simply because I would like audit log records only real users actions. As a super admin, when I switch to another user audit log record any actions of that user, but, it’s not that real user, it’s me.
I think that having a filter hook to bypass audit log recording could give a webmaster the choice of stop recording actions when he is switched to another user.
Hi,
I had the same problem and after investigating a bit I found a possible reason/solution.The solution: Try to delete from the database the wp-mail-smtp options stored in the options table of the single subsite, if exists.
Reason: The db stored options could get in conflict with the multisite options declared in wp-config.php. I’ve noticed that not every subsite gives me the problem. I found that each subsite that had the options stored in the database gives me that problem.
After deleting that options, the email test returns back to work again.
PLEASE: be carefully when deleting options directly from database. Do always a backup.Hi,
same problem here.
I’m using WP MAIL SMTP, and I would like to send email using the gmail APII’ve the following settings inside gmail account:
– Email address: [email protected]
– From Name : Company NameBut users receive my emails without the From Name.
They see only “noreply” as sender.To be more specific, this happens to me only using the “GMAIL” Mailer method.
Using the “Other SMTP” Mailer Method does not give this problem.Please could you help us to find a solution?
Thanks in advance.- This reply was modified 5 years, 6 months ago by virgodesign.
- This reply was modified 5 years, 6 months ago by virgodesign.
Hi,
this is not the expected behaviour.
REST API should be blocked only if password protection is enabled.This is what users epxects to be.
Please, consider to change this.
Thanks in advance.- This reply was modified 6 years ago by virgodesign.
Hi Meghan,
thanks for taking it in consideration.Could be also useful having the following filter before sending any email:
$recipients = apply_filters('cscf_recipients', cscf_PluginSettings::RecipientEmails(), $this );
This would definitely customize the whole experience for any user.
For example, I’ve a website where all workshops and events forms would be sended to a specific email recipient, different from the default one.Thanks again.
Ok, we can mark this topic as resolved.
Hi @dcooney,
yes, try changing the handle of the
wp_localize_script
function frominstante-images
toinstant-images-react
.The javascript file
instant-images.js
is registered with theinstant-images-react
handle.For me works fine! ??
Forum: Plugins
In reply to: [External Media] Google Drive need to enable DRIVE APIHi minnur,
thanks for the very quick reply.
Actually I’m working only with the Google Drive Api enabled (Picker Ai are disabled), and I’m importing correctly any file from my google drive to the media library.Thank you very much for this great awesome plugin!
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Unable to override MMR_CACHE_DIR and MMR_CACHE_URLYes it works correctly.
Forum: Plugins
In reply to: [Merge + Minify + Refresh] Unable to override MMR_CACHE_DIR and MMR_CACHE_URLHi,
I wish to change the default mmr folder and store all minified files in a custom folder, for example, I wish to define my custom folder as following:
A)
define( 'MMR_CACHE_DIR', WP_CONTENT_DIR.'/cache/files');
B)define( 'MMR_CACHE_URL', WP_CONTENT_URL.'/cache/files');
My scenario is that MMR is network activated and all sites (in subdomains) shares the same folder. And this is ok.
The problem is that it’s not possible to define these constants before mmr defines them.
The possible solutions are:
1. defines constants A and B inwp-config.php
file. Problem: WP_CONTENT_DIR/URL are not defined at this state.
2. defines constant A and B within a wordpress action hook. Problem: the only available hook ismuplugins_loaded
but mmr loads before this hook is fired, because is network activated.The only working way I found is creating a custom mu-plugin and defines there constants A and B. At this level we could also customize
MMR_JS_CACHE_URL
andMMR_CSS_CACHE_URL
What I’m trying to say is that, it seems that there is no really way to define a custom mmr folder BEFORE mmr defines it.
Considering that we can use thi plugin toghether with other caching plugins I think that would be more powerful to have an easy way to define a custom mmr folder.
Thank you very much for the attention.
- This reply was modified 7 years, 5 months ago by virgodesign.
Same problem here, fixed with @nigrosimone solution.
- This reply was modified 8 years ago by virgodesign.
Hi,
thanks for the reply and sorry for the delay, I think that storing css and js files in different folders could a be nice solutions. People can better choices how to organize assets.Another suggestion could be, the ability to choice if delete or not the mmr dir after plugin deactivation. I think that people should choice if delete or not the mmr folder when plugin is deactivated. For example, If you set a custom mmr folder, suppose “/cache”, and you use even for other pourpose with other subfolders and assets, you won’t delte this folder if you deactivate for any reasons mmr plugin.
In my opinion could be very useful the following choices:
– choose where to store js, css, and log files (separately).
– choose if delete or not directory in plugin deactivation.
– choose if use cron for creating files or process them instantly.If the purpose of the custom urls is for using them in a cdn, this could be explained or suggested in plugin doc as this could not be always clear, of people could get confused on how to use this.
Anyway I found mmr a great plugin. Congratulations!
It’s very very powerful. I use it in a large network in a dedicated server, toghether with w3tc, and I manage the minify process ONLY with mmr. it’s absolutely error free, it respects perfectly scripts orders and position and it is perfect for browser caching, due to the fact that as soon as you edit any js or css file, the resulting minify-merged file changes its name. And this force browser (with or without browser caching) to reload the resource without serving users an old version.Last, but not least, adding the html minify feature would complete definitely the plugin functionality.
Thanks again!
- This reply was modified 8 years ago by virgodesign.
Forum: Plugins
In reply to: [W3 Total Cache] Slowing dowm admin panelI’m experiencing a similar problem.
My configuration is:
1. WordPress 4.6.1 in Network Mode
2. W3TC version 0.9.5.1
3. OPCODE Cache with Zend Opcode installed and enabled
4. PHP 5.6As I enable Object Cache (Disk) the network admin incredible slow down.
Only network admin slow down, I suppose due to the fact that w3tc is network enabled.
When I turn off Object Cache, the network admin return back to loading fast.Any suggestions would be appreciated, thanks in advance.
Hi,
could you provide an example on how to setup properly custom js and css urls?I’ve defined constants as following:
define('MMR_CACHE_DIR', WP_CONTENT_DIR.'/mmr'); define('MMR_CACHE_URL', WP_CONTENT_URL.'/mmr'); define('MMR_JS_CACHE_URL', MMR_CACHE_URL.'/js'); define('MMR_CSS_CACHE_URL', MMR_CACHE_URL.'/css');
Thanks in advance.
Hi,
I’m sorry, I did a copy-paste typo error in the above post.
My running configuration is
define('MMR_JS_CACHE_URL', MMR_CACHE_URL.'/js'); define('MMR_CSS_CACHE_URL', MMR_CACHE_URL.'/css');
I’m using the default mmr cache path, as defined in MMR_CACHE_DIR.
Even if I define a custom path, the issue should remain, because custom urls point to a wrong directory. Or maybe I’m missing something?Thanks again.
- This reply was modified 8 years ago by virgodesign.