Scordisian
Forum Replies Created
-
Hello Renee,
Thnx for the quick response. I’ve been working in the mean time on the site and made changes but now that I check all is in the green ?? I think this might have to do with me adding security headers and tweaking the caching? Otherwise I don’t know but I am happy all works.
Forum: Plugins
In reply to: [Widget CSS Classes] UL classHi Jory,
Thnx for the reply. The plugin works but I think I failed to explain myself correctly.
E.g. the Recent Posts widget display’s a list. This starts with the<ul>
and then a<li>
, I want to add a class to that making it:<ul class="list-group">
&<li class="list-group-item">
I assume I need to change something in the functions file?
Regards
Forum: Reviews
In reply to: [Match me for BuddyPress] Not working when logged outI think this module is designed for logged in users with Buddypress only. So if a user is not logged in they cannot use it.
Forum: Plugins
In reply to: [Match me for BuddyPress] How to show matching % on members directoryLove the new feature ?? . Perhaps caching the calculations fields is an option?
Forum: Plugins
In reply to: [Match me for BuddyPress] Some questionThank you for your fast reply.
Do you have an ETA on the cross matching? I think it would boost usability.Thnx for the link, I will start adding translations in several languages these days.
Forum: Fixing WordPress
In reply to: Assistance with SQL commandsI fixed it, here is for future reference:
UPDATE
wpxn_posts
SETpost_parent
=3270 WHEREpost_type
=’topic’;Forum: Fixing WordPress
In reply to: Assistance with SQL commandsHi Steve,
Thnx, the plugin worked like a charm. Thats all fixed now.
As for the SQL I was thinking of this:
UPDATE wpxn_posts SET post_parent=’3270′ WHERE post_type=’topic’;
But I am not a SQL wizzard so I am hestitant to run this one.
Forum: Plugins
In reply to: [Nav Menu Roles] Empty last menu-item tagOK, I contacted the author of the theme and he tells me the theme doesn’t use the filter that way but like this:
wp_nav_menu( array( 'theme_location' => 'primary', 'container' => '', 'menu_class' => 'menu omega-nav-menu menu-primary', 'fallback_cb' => 'omega_default_menu' ));
What else could cause it?
Forum: Networking WordPress
In reply to: Network option issuesOK for some strange reason something goes wrong with WP, Apache and loading/detecting Apache modules on my server. As I have a dedicated box with a lot of freedom I am not sure if this has to do with any of my settings or if this will appear with others. Either way this might help.
I finally found something that helped me bypass the problem in \wp-includes\functions.php line: 3349 and change the following code:
function apache_mod_loaded($mod, $default = false) { global $is_apache; if ( !$is_apache ) return false; if ( function_exists('apache_get_modules') ) { $mods = apache_get_modules(); if ( in_array($mod, $mods) ) return true; } elseif ( function_exists('phpinfo') ) { ob_start(); phpinfo(8); $phpinfo = ob_get_clean(); if ( false !== strpos($phpinfo, $mod) ) return true; } return $default; }
into
function apache_mod_loaded() { return true; }
After that I could access the page, configure the Network and save it. I now see Super Admin and all appears to be working fine.
Forum: Networking WordPress
In reply to: Network option issuesNo errors in the log. Mod sec is off also.
Host is Hostdime. My server info is:
Operating system Linux
Path to PERL /usr/bin/perl
Server Name server
Kernel version 2.6.18-194.11.4.el5
cPanel Version 11.26.20
Architecture x86_64
MySQL version 5.0.91-community
Path to sendmail /usr/sbin/sendmail
Apache version 2.2.16
PHP version 5.3.3
cPanel Pro 1.0 (RC1)Forum: Networking WordPress
In reply to: Network option issuesI retried the install but keep running into the same problem.
Forum: Networking WordPress
In reply to: Network option issuesNo I didn’t import the data as the site I want to use as a central only had a couple of pages. I also just used another domain and created a brand new clean install in the mean time but run into the same problem there. No error logs, even if I put Debug on true.
Forum: Fixing WordPress
In reply to: Import Issue: Comment Threading GoneIs there a fix for this for WP-mu as well? I noticed this file doesn’t excist in there?
Forum: Fixing WordPress
In reply to: Link to full size image in post.I do not have a “linked” option in that screen. Just unlinked and when I add the image and post I just get the thumbnail…..
Forum: Fixing WordPress
In reply to: List all new blogs/postsAnyone, I have been looking but still didnt find any answer.