tabzam
Forum Replies Created
-
Forum: Plugins
In reply to: [New User Approve] Custom Email notificationadd_filter( 'new_user_approve_email_admins', 'email_admins' );
should be
add_filter( 'new_user_approve_email_admins', 'email_admin' );function email_admin( $to ) { // add more email addresses $to[] = 'email@example.com'; return $to; } add_filter( 'new_user_approve_email_admins', 'email_admin' );Forum: Plugins
In reply to: [New User Approve] Add a different admin email addressadd_filter( 'new_user_approve_email_admins', 'email_admins' );
should be
add_filter( 'new_user_approve_email_admins', 'email_admin' );function email_admin( $to ) { // add more email addresses $to[] = 'email@example.com'; return $to; } add_filter( 'new_user_approve_email_admins', 'email_admin' );Forum: Plugins
In reply to: Woocommerce custom shipping ratesany one please?
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] wishlist product quantityany one??
Forum: Networking WordPress
In reply to: Fresh Multisite instalation adds "/blog/" in permalinkFixed it by changing the .htaccess file.
changed from this:
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) C:/wamp/www/050-VRH-Hotel-Wordpress2/$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ C:/wamp/www/050-VRH-Hotel-Wordpress2/$2 [L]To this:
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) /050-VRH-Hotel-Wordpress2/$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ /050-VRH-Hotel-Wordpress2/$2 [L]Thank you
Forum: Networking WordPress
In reply to: Fresh Multisite instalation adds "/blog/" in permalinkHey HuddersfieldH,
I made another site in my multisite setup with the permalink settings as you mentioned in your earlier comments. Now I am getting this error on my newly added sub site:
===================
Forbidden You don't have permission to access /050-vrh-hotel-wordpress2/C:/wamp/www/050-VRH-Hotel-Wordpress2/wp-admin/ on this server. Apache/2.4.9 (Win64) PHP/5.5.12 Server at 192.168.2.6 Port 80====================
.htaccess file:
RewriteEngine On RewriteBase /050-vrh-hotel-wordpress2/ RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) C:/wamp/www/050-VRH-Hotel-Wordpress2/$2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ C:/wamp/www/050-VRH-Hotel-Wordpress2/$2 [L] RewriteRule . index.php [L]is there something wrong with my .htaccess file?
Forum: Networking WordPress
In reply to: Fresh Multisite instalation adds "/blog/" in permalinkThank you very much. worked like a charm.
Really appreciate your help.Thank you once again;
Forum: Plugins
In reply to: [Simply Instagram] Hi resolution image in sidebarThanks for this, I am using a widget in sidebar. and it does not have a “Standard Resolution” option there.
I can see that there is a “Standard Resolution” in Shortcode Generator under the settings, but i am not using a shortcode, I want to use “Simply Instagram: My Latest Photo” and i can’t see a standard resolution option there.
Thanks