Questions tagged [podscms]

Pods is a CMS framework that lets you add and display your own content types. Unlike WP custom post types, each content type gets its own table.

Links

103 questions
2
votes
2 answers

Using Pods CMS with Roots Wordpress Theme

I am having problems displaying Pods data in a custom Wordpress template using the Roots Theme I have setup a "Products" Pod, a Pods page "products/*" that has been assigned the custom Wordpress template. Roots uses a Theme Wrapper file that doesn't…
SinDesign
  • 41
  • 1
  • 1
  • 7
2
votes
1 answer

wordpress//pods cms - how to specify a custom template file to my pod?

First of all, I would like to say that I'm very sorry for this shamefull question ! On my wordpress (v3.5) I just downloaded and install pods cms plugin (2.2). I made my new awesome pod object (News for example), I added few custom attributes and…
supernaturall
  • 58
  • 1
  • 8
2
votes
1 answer

Pods fetchRecord skips items

So I have am grabbing some records using Pods. I have 31 records, but my while($thePod->fetchRecord()) loop only goes 15 times $thePod = new Pod('projects'); $thePod->findRecords('slider_order ASC'); $totalItems = $thePod->getTotalRows(); // =…
ahren
  • 16,803
  • 5
  • 50
  • 70
2
votes
2 answers

Issue while displaying single pod Pod

I am new to Pods CMS and Wordpress. I am running pods CMS (2.0) and wordpress (3.4.1). I was playing with pods but unable to view single pod page. I have created few pods like teams etc. I am unable to run view single page of pods. When I debug, I…
suraj
  • 21
  • 3
1
vote
3 answers

Migrate Drupal Content Type to Wordpress

My Old site is developed in Drupal which is having a Content Type to create a form and the user is able to view that form and submit the form. The form is added as a new page in Drupal so that the page can be provate or user can make it public…
Dilip Rajkumar
  • 7,006
  • 6
  • 60
  • 76
1
vote
1 answer

how to give permission to user on their own pods pages content with 'add' and 'edit' options only?

How to give permission to user on their own pods pages content with 'add' and 'edit' options only? I am using PHP, Apache, MySql and wordpress. Please, give me code examples. I am using following code:
suresh
  • 41
  • 9
1
vote
1 answer

Pod findRecords relationship

I create items using pods, I want to filter through the pods depending on what their relationship is. Eg I have 2 relationships to pick from: "Good" or "Bad" $pods_name = "attitude"; //get the specific pod object: $thePod = new…
Bankzilla
  • 2,086
  • 3
  • 25
  • 52
1
vote
1 answer

Display a variable from a pod via query using PODS

I have a custom event-pod with these variables: url, date, time So far this code is working: 'date', 'post_type' => 'event', ); $the_query = new WP_Query( $args ); if (…
1
vote
1 answer

PHP and Pods: Combine array values only into new array

Long time user, first time poster. The forums here have got me out of a lot of trouble but I'm really stuck on this one. I'm using Pods for a Custom Post Type that has a Custom Field where a user can enter a numeric value. eg. or 4 or 2 etc I want…
1
vote
1 answer

Order of custom posts in custom Wordpress query not as expected

I have a custom Wordpress query which looks like this: $args = array( 'post_type' => 'publication', 'post_status' => 'publish', 'category_name' => 'my-category', 'posts_per_page' => 20, 'orderby' => 'publication_year', …
Johannes
  • 64,305
  • 18
  • 73
  • 130
1
vote
1 answer

Wordpress PODS magic tags extend with parameters

I am wondering if there's any function that I can create in order to modify the magic tags behaviour. Ideally, I would like to use a tag like this {@post_content|120} which would go through my custom function and check if there's a | character, then…
1
vote
2 answers

Set custom post default language

Set custom post default language. I created a custom post with pods and I have WPML plugin installed. I want to show this custom post only in a language which is not the default one of the website so that the urls will be…
user1619177
  • 145
  • 9
1
vote
1 answer

Wordpress Pods: How to only get (sub)categories with articles in it

I am trying to get all subcategories which have articles linked to it. To visualize the needed result: subcategory A (10 articles linked) subcategory B (0 articles linked) <- I do not want this one subcategory C (1 article linked) So for my…
DelphiLynx
  • 911
  • 1
  • 16
  • 41
1
vote
2 answers

Wordpress, PodCMS and Search

I have a WordPress site for a client. He owns a video store, and I made a site for him to update the list of movies, usually just the "new this week" movies. I used PodCMS as an easy way for him to upload movies and then display them. No need for…
Vian Esterhuizen
  • 3,788
  • 4
  • 27
  • 37
1
vote
2 answers

Custom Pods.io detail page

I am attempting to create a custom template page for a details page for my Pods.io 'research_faculty' pod. I have the url going currently to /people/details and it does go to that page but I created a 'details' page that I have assigned a custom…
Wally Kolcz
  • 1,604
  • 3
  • 24
  • 45