Wasim alhajebi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Categories are hidden from all my websitesi fixed it, the problem was in vps
vps has temp folder
tmp/ should be cleaned because alot of services are worked with tmp
so if tmp is full so there’s no more space to save requests !Forum: Fixing WordPress
In reply to: Categories are hidden from all my websitesphotoshop.cc
vectord.comindeed all my webistes working with wordpress !
Forum: Plugins
In reply to: [Advanced Custom Fields: Number Slider] doesn't appearMbothing just , i actived it and it doesn’t appear
Forum: Fixing WordPress
In reply to: Permalink doesn't workit works but permalink doesn’t work and i htaccess can’t be created by serever
Forum: Fixing WordPress
In reply to: Domain Forwarding Problemi think it’s good 755
try to rename config
or delete hatacss or deactive theme or pluginsForum: Fixing WordPress
In reply to: Create popup in same browser windowit’s easy to make;
1- search for any popup jquery plugin,
2- try to use get post contents or details by post id
3- make action get post by idfor example
https://website.com/?browse_post_id=1;
and make it clear without header and footer;in action
if(!empty($_GET[‘browse_post_id’])){
echo post_content(1);
exsit << —- importent
}edit popup plugin make it like this
when click on post 1 load post 1 content (https://website.com/?browse_post_id=1)into popup div
Forum: Fixing WordPress
In reply to: Domain Forwarding Problemcheeck out public_html permission on your host cpanel !
Forum: Fixing WordPress
In reply to: how to get rid of the silly word "thumbnail"?it appears when thumbnail not exsits
https://globalcitizenjou.tempwebpage.com/wp-content/themes/gcjtheme2011/uploads/2007/08/party_flier_528051.jpg not found page
alt=”thumbnail”if you see
<img alt="thumbnail" src="https://globalcitizenjou.tempwebpage.com/wp-content/themes/gcjtheme2011/uploads/2007/08/party_flier_528051.jpg" height="75" width="100">
Forum: Plugins
In reply to: [Urtak] hello wp-admin turned to blank page coz of UrtakPlugin::init();the latest one i use !
Forum: Plugins
In reply to: [BuddyPress FollowMe] follow even postshello any help ?
no i got 500 with this plugin i got 560 quries , when i deactive this plugin the value gonna be 60 only ?
Forum: Plugins
In reply to: [BuddyPress FollowMe] follow even postsplease help
Forum: Fixing WordPress
In reply to: Query problems in categoryHere is the correct code may someone of you need to use it
<?php $args = array( 'paged' => $paged, 'meta_query'=> array( array()), 'meta_key'=>'views', 'orderby'=>'meta_value_num', 'order'=>'DESC'); $args = array_merge( $args , $wp_query->query ); $posts = query_posts( $args ); foreach( $posts as $post ) { // the code } ?>
Forum: Plugins
In reply to: [Simple Smilies] [Plugin: Simple Smilies] doesn't workthe best plugin of smiles really thank for this plugn it workds welel
Forum: Fixing WordPress
In reply to: redirect from site.com/?p=xx to site.com/?nice=xxit doesn’t work , i wabt to change the action ,
for ex
website.com/?p=5 to
website.com/?post=5 or ec…