kcarissimi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Labels Functioning as TagsThis is the code right here. All I want to do is add a piece that lets a user click on the label and go to all the rest of the sessions tagged in that track.
<?php foreach ($tracks as $track) { ?>
<span data-track=”<?php echo $track->term_id; ?>” class=”label single-session-link btn btn-primaryd<?php if (empty($track->color)) echo ” bg-gold”; ?>” <?php if (!empty($track->color)) echo “style=’background-color: $track->color;'”; ?>><?php echo $track->name; ?></span>
<?php } ?>Forum: Fixing WordPress
In reply to: Labels Functioning as TagsThank you for responding!
I’d like to redirect the labels to the slugs for each track: for instance, Development to all the sessions in that track, like a blog tag would. Would a redirect app do that too?
Forum: Fixing WordPress
In reply to: Fatal ErrorI believe it’s “Simple Taxonomy.” https://wordpress.org/plugins/simple-taxonomy/
I can no longer access my site because of this error, so I can’t uninstall the plugin or view the details. Is there a way for a WP admin to access and remove the plugin?
Forum: Fixing WordPress
In reply to: Fatal ErrorI installed the “Custom Taxonomy” widget and attempted to create a custom blog post-type called “Region.” I have used this widget on a previous site with great success, but this time it is somehow interfering with the theme or code somehow.