Trisha Salas
Forum Replies Created
-
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] today's date not highlightedSo good to hear that! Best of luck going forward ??
I’m providing assistance to Joe while he’s on vacation, and this is beyond what I’m able to take care of. I’m notifying him about the issue, and he’ll get to it as soon as he can, although his internet access will be limited while traveling.
I’m going to be looking at this plugin along with the Calendar today and if I’m able to help sooner I’ll reply back here.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] today's date not highlightedHi Ken,
I checked out your calendar and I see today’s date highlighted in yellow. The styling for the today class is determined by the class
.today
rather than the ID#today
that you show above. Perhaps that’s the problem you’re running into?Forum: Themes and Templates
In reply to: Parse ErrorAre you getting the same error after pasting the new code?
Forum: Themes and Templates
In reply to: Post PHP Code for wesite templateRichard,
Take a look at wp_query, you would have to be somewhat specific about either category. This page will tell you everything you need to know about wp_query => https://codex.www.ads-software.com/Class_Reference/WP_Query
One example is to query by category and call a single post so that the latest post is always the one visible in the content box you are targeting.
<?php $query = new WP_Query( array( 'posts_per_page' => 1, 'category' => 'movies' ));?> <?php while ( $query->have_posts() ) : $query->the_post();?> <?php the_title(); ?> <?php the_content(); ?> <?php endwhile;?>
Hope this helps. You will probably need to do a query like this for each of the 3 blocks of text on the page.
Forum: Fixing WordPress
In reply to: Displaying different meta data in different categoriesIf that doesn’t do what you want can you post a link? It would help to see how the theme has formatted things.
Forum: Fixing WordPress
In reply to: Displaying different meta data in different categoriesOh, sorry …that was kinda of an obvious thing I completely forgot about. Try changing it to
.category-somecategory .entry-meta { display: none; }
I think that will get rid of the date without getting rid of the author information. ??
Glad to help.
Forum: Fixing WordPress
In reply to: Blank space at the bottomThis is a beautiful site, by the way ??
Forum: Fixing WordPress
In reply to: Blank space at the bottomOk, thank you for posting this I can help you now.
In your stylesheet you will see this on line 376:
#colophon { display: block; padding: 30px 0; border-top: 1px solid #ddd; background: #fff; }
change it to
#colophon { display: block; padding: 30px 0 0 0; border-top: 1px solid #ddd; background: #fff; }
You also have some space at the bottom from this code on line 382:
#footer-widgets { border-bottom: 1px dotted #ddd; margin-bottom: 20px; }
You can change it to:
#footer-widgets { border-bottom: 1px dotted #ddd; margin-bottom: 0; }
to remove some additional space.
You also have some hidden code in the footer with a link back to wp-theming. That code has a height of 21px but it is floated left -865px so it is not visible at all (although the height is still there.
Forum: Fixing WordPress
In reply to: Displaying different meta data in different categoriesHi,
You could use a conditonal tag and write a function to hide the date in that specific category. See here => https://codex.www.ads-software.com/Conditional_Tags#A_Category_Page
Another way to do it if you are displaying that category of posts on a page by themselves there is likely a body_class() and/or post_class() which would output category dependant css classes;
use these in your stylesheet like so:
.category-somecategory .entry-date {
display: none;
}Forum: Fixing WordPress
In reply to: Lost all Posts on Website after latest upgradeHello, I noticed that there is a stray Google+ at the very top of your page. Also there is some content there.
How did you do the upgrade? Do you have a backup? Do you have access via ftp or to the database?
I know this is troubling but it is very possible that the content is just not displaying properly. If you were able to look at the database it would tell you if everything were still there.
Forum: Fixing WordPress
In reply to: Search Custom Post Types and the Meta BoxesHi Archie22is,
Custom meta boxes use a custom field key to store their data so you would need to know the key you are looking for to write your script. Something like this:
$query -> set ( 'meta_key' , array ( 'leather_size', 'leather_color' ) );
This is completely off the top of my head…I am more used to writing wp_query and not search query so I would play around with it some. You can find more information here: https://codex.www.ads-software.com/Class_Reference/WP_Query#Custom_Field_Parameters
Forum: Plugins
In reply to: Which Plugin to Install Like Button?Oh, I’m so glad! I was starting to get a bit miffed with Firefox and Safari…Chrome is becoming my close friend ??
Glad you got it worked out!
Forum: Plugins
In reply to: Which Plugin to Install Like Button?Hi, sorry for the delay…I went on a bit of a scavenger hunt for you and got distracted. The buttons in JetPack are not working for me in Firefox, what browser are you using?
If it is Firefox try a different browser. Also, you will need to go into JetPack settings as well as settings>sharing to activate.
Let me know if this works, if not I’ll keep digging ??
Forum: Fixing WordPress
In reply to: Blank space at the bottomHi there,
It would be more helpful to see the actual page that you are having the problem on. It’s most likely something in the CSS but without seeing the code it’s hard to troubleshoot for you. Is the site live? Can you post a link?