shivks
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPoints] blog id is not inserting in table4.3.1 & 4.4.2
no
yes
0Forum: Plugins
In reply to: [WordPoints] blog id is not inserting in tableI am publishing new post, commenting on a post, but still blog id column is 0 in database. No other plugin is conflicting I have deactivated all other. Kindly help on this.
Forum: Plugins
In reply to: [SlimStat Analytics] how to only few statistics reports to authors ?Hi Jason,
I need to show only these stats to authors
top countries,top search items, top authors, top usersHow to do that ?
Thanks ??
Forum: Plugins
In reply to: [Voter Plugin] trouble with ajax loaded activitydo you got any solution for this ?
Forum: Networking WordPress
In reply to: wordpress multisite is not working properlyIt’s because of rules added by wordpress while installing multisite in .htaccess file. change to below mentioned rules it will work I guess ??
# 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).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]Forum: Plugins
In reply to: [Voter Plugin] how to make listed voter as hyperlink?You can use default wordpress functions to get hyperlinks of users who are all liked(for ex: get_author_posts_url())
Forum: Fixing WordPress
In reply to: Follow Blogs of particular authorThanks ??
Forum: Plugins
In reply to: [WTI Like Post] How to use same button for both like and dislike ?I got voter plugin, to solve this issue
Thanks ??
Forum: Plugins
In reply to: [WTI Like Post] How to use same button for both like and dislike ?OK, then how to create unlike option with same like button, using this plugin. actually I don’t need dislike option.
Forum: Plugins
In reply to: [WTI Like Post] How to use same button for both like and dislike ?Only one button to be used for both like and unlike event. Both things to be happen with only one button. I dont want separate button for like and unlike events
Forum: Fixing WordPress
In reply to: My wordpress site to be center in all cases(zoom in or out)My dashboard page is not showing in center
Forum: Fixing WordPress
In reply to: My wordpress site to be center in all cases(zoom in or out)Sorry, you can’t access the site, now the problem is sorted out.
Thanks for your reply
Forum: Plugins
In reply to: [SAML 2.0 Single Sign-On] Redirect to requested pageHi Leland,
1. Create a cookie in main index.php file to get the requested url
$cookie_name = “1”;
$cookie_value = $_SERVER[‘REQUEST_URI’];//it will get requested url
setcookie($cookie_name, $cookie_value, 0, “/”);//once browser closed cookie //will deletePlace this above code in main index.php file.
2. go to wp-content\plugins\saml-20-single-sign-on\lib\classes\saml_client.php file
search for simulate_signon functionchange the wp_redirect url in else loop to like this
wp_redirect( ‘https://yourblogurl.com/index.php’ . $_COOKIE[‘cookiename’]);//cookie you created in index.php file
Forum: Plugins
In reply to: [SAML 2.0 Single Sign-On] Redirect to requested pageBy using cookies this issue solved