GoodUtopian
Forum Replies Created
-
Forum: Plugins
In reply to: [Cyclone Slider] how does the plugin handle different picture sizes?Hi
Is there a way to disable resizing completely? I just want the olugin to display my images as they have been uploaded.
Thanks,
Maybe I can use EM categories — not sure why I thought I couldn’t. But now I’m confused as to how I would do that. i’m customizing a site built by someone else and sort of stumbling through. Thanks for your help.
Thanks — Yes, I’m trying to use event tags in place of category tags. Maybe you could take a look at my code? This is in sidebar.php
The second part (after “else”) is working, but the first part is not. It’s not breaking anything, it’s just not printing what I want it to print (a list of linked EM tags)
<h1>Browse</h1>
<?
if (is_page( ‘calendar’ ) ) {
$args = array(
‘categories’ => $catID
);{
$EM_tags = EM_get_tags($args);}
/* print_r($EM_tags); */
$content .= “”;
foreach ($EM_tags as $EM_tag) {
$content .= “<p>link\”>$EM_tag->slug</p>”;
}echo $content;}
else {
$args = array(
‘categories’ => $catID
);{
$tags = get_category_tags($args);}
/* print_r($tags); */
$content .= “”;
foreach ($tags as $tag) {
$content .= “<p>tag_link\”>$tag->tag_name</p>”;
}echo $content;
}
?>
Forum: Plugins
In reply to: [Event Organiser] Show 5 most recent events in reverse order?you know, i wasn’t scientific about it — i had a couple that were deactivated, which i deleted, and i had a couple that were active but i wasn’t using them — i think the latter were jetpack and something about parallel loading that i don’t recall ever installing ….
next time, i’ll be more methodical, so i can be of help!
Forum: Plugins
In reply to: [Event Organiser] Show 5 most recent events in reverse order?Thank you! I cleaned up my plug-ins, and it works perfectly. Much appreciated!
Forum: Plugins
In reply to: [Event Organiser] Show 5 most recent events in reverse order?Thanks so much for responding, but this doesn’t work. When I did this, it gave me all recent posts in ascending order (starting with the date farthest in the past). I copied the code directly. Any other thoughts?
Thanks!
AnnaForum: Fixing WordPress
In reply to: Menu styling: Gigawatt themeSorry!
Tableonten.com
Pw: bloomvilleI’m just beginning to customize…
Thanks!
Forum: Fixing WordPress
In reply to: Images appear (broken) and disappear in Firefoxjclark, you saved me.
i copied that code from somewhere, and i thought it was strange that it used the backslash — but since it worked fine in chrome, i didn’t think it was the problem.
works now in both browsers — i really appreciate the help.
Forum: Fixing WordPress
In reply to: Images appear (broken) and disappear in FirefoxI should specify that when I say the image disappears, it’s really the entire header that disappears up into the top margin, so that the nav bar moves all the way to the top of the window.
Thanks again.