tiffweb
Forum Replies Created
-
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] CPT fields are not displayingThanks guys for your replys. I’m gonna watch that video! Maybe that will help me understand your last comment about how I’m “calling my template”. Cause right now, I don’t know what your talking about!! LOL Thanks for giving your time so freely!
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] CPT fields are not displayingThank you! I tried the tags you suggested!
But it doesn’t seem to change my page at all.
I was looking for help on your site for templates and all the different tags.
https://docs.pods.io/displaying-pods/pods-templates/pods-template-editor/
but the page is empty. Do you have another link where I can read about this?Thank you for your help! Tiff
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] CPT fields are not displayingMaybe you are referring to the Template for my CPT ‘Historical Documents’?
This is what I have there:
https://www.screencast.com/t/UrxTyN4AlForum: Plugins
In reply to: [Pods - Custom Content Types and Fields] CPT fields are not displayingI’m thinking it sounds like perhaps I’ve missed a step somewhere?
TiffForum: Plugins
In reply to: [Pods - Custom Content Types and Fields] CPT fields are not displayingThanks! But I’m not sure what you are asking! Tiff
To add: I’d also like to apply a date to each document for archiving purposes.
Very very helpful! Thank you!
To elaborate more, I’m working on a site with tons and tons of PDF documents. I’m thinking of creating a blog post for each one and making them searchable by using categories and tags. Plus, I need to archive anything a year old, yet still be searchable. Would this plugin be useful for that task? Thanks!
Forum: Plugins
In reply to: [Custom Post Type UI] Is this a 1 time purchase or a yearly subscription?Also what is the difference in the free and paid versions? Thank you.
Forum: Themes and Templates
In reply to: [OceanWP] Ocean Extra Plugin disables Elementor editingThat resolved it!! Thank you so much!
Forum: Plugins
In reply to: [Facebook Events Widget] Style adjustmentThis is how I removed it, I replaced this:
.fb-event img {
float: left;
}
with this:
.fb-event img {
float: left;
display: none;
}I couldn’t figure out how to change it, but would love to know that.
Thanks!Forum: Plugins
In reply to: [Hana Flv Player] installing 4 videos on 1 WP page and only 1 showsPlease excuse the post, I found my own mistake! =)
Forum: Fixing WordPress
In reply to: preview wp site before others see itThank ya’ll so much, I will give these ideas a try!!
Forum: Themes and Templates
In reply to: want to apply new template to a certain pageHey again, I figured out my own question! =) I had to name my new template by adding this to the very top of my new template page:
<?php
/*
Template Name: New Layout
*/
?>Forum: Fixing WordPress
In reply to: Missing template attribute in WordPress 2.9I’m using 3.0.1 and my templates where not showing up either, I tried a few different things mentioned and then this worked: You have to give your new template a name:
For instance my new template file name is “page-new-layout.php”
So I added the code below to the very top of that page:<?php /* Template Name: New Layout */ ?>
Add it above this line
<?php get_header(); ?>
Then I went to edit my page and was able to choose my template!! Hope this helps someone! =)