csloisel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Moving WordPress theme and all filesTake a look at this article: Moving Directories On Your Existing Server
Forum: Fixing WordPress
In reply to: WordPress.com Theme on Site Hosted ElsewhereIt looks like you can purchase a copy of the theme here to use on your self hosted site.
Forum: Localhost Installs
In reply to: New Post Feature Image section missionFirst the screen options tab at the top and see if it is there, if it is make sure it is checked. If it is not there, you may be using a theme that does not support featured images, did you recently change themes?
Forum: Fixing WordPress
In reply to: Custom URL based on plugin variablesThat should work.
Forum: Fixing WordPress
In reply to: Custom URL based on plugin variablesYou could use something like this, but be sure to replace 9999 with you RSVP page id:
function add_rsvp_page_url_args( $item ) { $rsvp_id = '9999'; // RSVP Page ID $user_id = get_current_user_id(); $item_id = !empty($item->object_id) ? intval($item->object_id) : 0; if ( !is_admin() && $user_id && $item_id && $item_id === intval($rsvp_id) ) { $first = get_user_meta( $user_id, 'first_name', true ); $last = get_user_meta( $user_id, 'last_name', true ); if ( $first && $last ) { $url_args = array( 'firstName' => $first, 'lastName' => $last, 'passcode' => $user_id ); $item->url = add_query_arg( $url_args, $item->url ); } } return $item; } add_filter( 'wp_setup_nav_menu_item', 'add_rsvp_page_url_args' );It could be modified to automatically find your RSVP page so you don’t have to fill in the ID but the way the RSVP plugin is setup would make it a considerably slower function.
Forum: Fixing WordPress
In reply to: Custom URL based on plugin variablesAre you just adding an RSVP item to the menu?
Do you know what PHP version you are running? And if it is possible to upgrade the version your host is running?
I happen to be one of the theme developers, and I will open a discussion with the team about making the theme compatible with 5.2. For now I am going to recommend at least preventing the fatal error being thrown and denying access to the admin area.
See: https://github.com/voceconnect/eventbrite-event/issues/4
It looks like you may be using a PHP version lower than 5.3 which is the minimum the theme needs to work correctly. Do you happen to have FTP access to your server? The easiest solution would be to rename or delete the theme folder, and you should be able to access the admin area again.
Forum: Fixing WordPress
In reply to: Is there a 'post_text' version of 'comment_text' ?$post = get_post(); $post->post_content;or
get_the_content()within a post loop.Forum: Fixing WordPress
In reply to: How do you tie posts with unique catagories to specific pagesDon’t create a page, or a custom menu item. Just add the category to the menu, and it should link to the archive.
Forum: Fixing WordPress
In reply to: Highlight Current Category that was rewritedCheck the menu item and make sure it is not a custom link. Try removing it and re-adding it from the categories section ( not manually with the links section ).
Forum: Fixing WordPress
In reply to: How to loop through categories of only custom post types?wp_list_categories( array( 'taxonomy' => 'customtaxonomy' ) )Forum: Fixing WordPress
In reply to: How to show only the posts that belong to a specific category?get_term_link( $term, $taxonomy = '')Forum: Everything else WordPress
In reply to: owner of domain nameYou can see the domain registration information here:
http://www.whois.com/whois/liberparatus.comForum: Fixing WordPress
In reply to: Background color changed on its ownYour background appears to be working for me, I’m seeing a gray chalkboard image.