csloisel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link ProblemsIt sounds like you may be using invalid tags that are breaking the DOM. How are you adding links in a post?
Forum: Fixing WordPress
In reply to: Making category links on a pageYou could try creating a menu of the categories you want to display, and finding a plugin for a menu shortcode to display it.
Forum: Fixing WordPress
In reply to: is_home conditional returns true on post and front pageYou may be looking for is_front_page()
You can read about the differences here:
http://codex.ww.wp.xz.cn/Function_Reference/is_home#Blog_Posts_Index_vs._Site_Front_PageForum: Plugins
In reply to: [Widget Settings Importer/Exporter] widgets data import exportCan you provide the name or link to the said plugin you are using? And which widget is not saving.
Can you provide the steps you are taking to authenticate the application? This usually means the api key generated on eventbrite does not have the correct application url provided.
Forum: Fixing WordPress
In reply to: How to add a code on header for homepage only?I would put it in a child theme’s functions.php
Forum: Networking WordPress
In reply to: How to output name & email of site adminTry changing:
$user_phone = get_user_meta( $user_info->ID, 'phone' );to:
$user_phone = get_user_meta( $user_info->ID, 'phone', true );Forum: Fixing WordPress
In reply to: How to add a code on header for homepage only?It would look something like this:
add_action( 'wp_head', function() { if ( is_front_page() ) echo '<meta />'; } );Forum: Fixing WordPress
In reply to: WordPress ForumsYes, it uses the built in user functionality.
Forum: Fixing WordPress
In reply to: WordPress ForumsbbPress is typically the go-to when creating forums in WordPress. It should work out of the box without needing any coding.
Forum: Fixing WordPress
In reply to: How to force-update all my posts ?This scenario is typically where a sysadmin or developer would create a database upgrade script to address the issue, I’m not sure you are going to find a plugin or feature that will do this for you. And even if you did find something i’m not sure I would even recommend it, considering the sheer quantity of data at stake. Whatever you do, I would back up your DB right now before attempting anything.
Forum: Fixing WordPress
In reply to: WordPress ForumsHave you checked out bbPress?
Forum: Fixing WordPress
In reply to: Custom URL based on plugin variablesAlso make sure you are testing with an account that has both name fields filled in.
Forum: Fixing WordPress
In reply to: Help activing plugin plsWell you an try: clearing your browser cache, restarting your server if that is an option, and ensure the plugins directory has the correct permissions.
Edit: Nevermind I guess we found the problem.
Forum: Fixing WordPress
In reply to: Help activing plugin plsWhen you open the wp-google-maps folder, are all the files there? Specifically wpGoogleMaps.php?
Some unzip applications will create a nested folder for exmple a wp-google-maps folder inside a wp-google maps folder, make sure this is not the case.