Masoud
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images not displaying on site, nor in media library, but DO existsame problem here.
i use ssl for website. and child theme.
before update to new version, everything was fine.
after update, the pictures are not showing anymore!Forum: Fixing WordPress
In reply to: pingdom: minimize request size issue@strendata
sorry i must read your reply wrong, i thought you wanted the pingdom page.my bad.
and thank you for your help and answer.- This reply was modified 9 years, 7 months ago by Masoud.
Forum: Fixing WordPress
In reply to: pingdom: minimize request size issuehi @sterndata
here is the pingdom page as you requested :
https://tools.pingdom.com/#!/ey7kg8/www.poofyland.comthank you very much for the help.
Forum: Fixing WordPress
In reply to: GTMetrix issuesi’ve had the same issue. and i found the answer.
so i will share it with you.
as to complete “keri23” answer.
note this: you have to put it in your main .htaccess file. (in case you have multiple .htaccess)
put this at the top of any codes.# Cache Expiration <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access plus 1 year" ExpiresByType image/jpeg "access plus 1 year" ExpiresByType image/gif "access plus 1 year" ExpiresByType image/png "access plus 1 year" ExpiresByType image/x-icon "access plus 1 year" ExpiresByType text/css "access plus 1 month" ExpiresByType text/x-component "access plus 1 week" ExpiresByType text/html "access plus 1200 seconds" ExpiresByType text/javascript "access plus 1 day" ExpiresByType text/cache-manifest "access plus 0 seconds" ExpiresByType application/pdf "access plus 1 month" ExpiresByType application/javascript "access plus 1 month" ExpiresByType application/x-javascript "access plus 1 month" ExpiresByType application/x-shockwave-flash "access plus 1 month" ExpiresByType application/atom+xml "access plus 1 hour" ExpiresByType application/rss+xml "access plus 1 hour" ExpiresByType application/font-woff "access plus 1 week" ExpiresDefault "access plus 1 week" </IfModule>i hope this help you, Masoud.
hi @heateor π
you are welcome ^_^
—–
just please , consider adding a new share button, to share articles to telegram
” Telegram Share Button ”
here is their website for more info : https://telegram.org/
—–
Telegram, is like the Whatsapp , or Line. is for communicate and sharing.
i really appreciate the hard work of you. thank youForum: Networking WordPress
In reply to: Login on Multisite Subdomainhi @bethannon1 .
sure thing, i will create a new topic.
thank you for pointing that out πForum: Networking WordPress
In reply to: Fresh WordPress install, subdomain multisite, login loophi, have you tried this ?
https://codex.wordpress.org/Login_Trouble
i hope this helps youForum: Networking WordPress
In reply to: Login on Multisite Subdomain@bethannon1
by the way, this is my fresh install of wordpress super admin.
i have installed latest wordpress version, theme 2016, no plugins
thank you very much.Forum: Networking WordPress
In reply to: Login on Multisite Subdomain@scotty1928
hi, i have the same problem@bethannon1
hi . thank you for helping.
same problem here.
as i am logged in as super admin, when i go to (test1.example.com/wp-admin)
it will show me that i have to login, to access the dashboard.
when i log in with the (test1.example.com) with my super admin username/pass. then if i go back to original site as (example.com/wp-admin) i have to log in again!
it seems that i can only be logged in, in one site only!
if i log in , in main domain. i will logged out from subdomains.
if i log in subdomains, it will log me out from main domain , and other sub domains.
is there a solution to this issue?Forum: Fixing WordPress
In reply to: hide/remove custom_column from custom_post_type admin panelok, thanks to you guys.
the problem is solved.add_filter( 'manage_edit-recipe_columns', 'my_columns_filter',10, 1 ); function my_columns_filter( $columns ) { unset($columns['taxonomy-recipe_difficulty']); return $columns; }Forum: Fixing WordPress
In reply to: hide/remove custom_column from custom_post_type admin panel@wppatrickk
many thanks for help.
i dont know exatly if the column name is difficulty or recipe_difficulty, so i typed both of them
i tried the code :function my_columns_filter( $columns ) { unset($columns['recipe_difficulty']); unset($columns['difficulty']); return $columns; } add_filter( 'manage_edit-page_columns', 'my_columns_filter',10, 1 ); add_filter( 'manage_edit-post_columns', 'my_columns_filter',10, 1 ); add_filter( 'manage_edit-recipe_columns', 'my_columns_filter',10, 1 );but no change has come to the column.
any other suggestions you might have?
and thanks again.Forum: Fixing WordPress
In reply to: how to hide/mask _wpnonce in urlbump!
Forum: Fixing WordPress
In reply to: how to hide/mask _wpnonce in urlno one knows how to? π
Forum: Reviews
In reply to: [Limit Login Attempts] keeps me (admin) logout@neotrope
you probably do own very simple and small sites π
i described in details for others. so if you don’t have problem, then i wish u luck!
please read carefully, before try to comment…Forum: Fixing WordPress
In reply to: 2 signup page at the same time!hi CedCommerce.
many thanks for your help and attention.
i put that code in action, but it seems that my problem is something esle.
i some how managed it myself.
there was a code in my sinup template, which defines that if the bp is activated then redirect the user with wp_redirect … to the bp signup page.
the eror was from that part.
i corrected the if statement. and it seems to work alright now.
but thankssss to you for your notice and time.