monicharm
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] “Search Results for” translate title@jmblues You are officially my heroe of the day!
Loco translate cannot find the phrase, so I wonder why that is? Maybe the Dutch PO file does not contain all terms?
Thanks anyway!
MoniqueForum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Infinite paragraph text cuts ofHi Jory,
The pod is a Custom Post Type created in Pods containing 13 fields. My paragraph gets cut off at 1802 characters (thank you online character counter 🙂 ).
I tried setting max length to -1 and 99999, same result.Please help me out!
Thanks in advance,
MoniqueForum: Plugins
In reply to: [ECS - Ele Custom Skin for Elementor] Number of posts per pageOops, this was the WordPress number under settings 🙂 Definitely a blond moment 🙂
Thanks & have a good day!Forum: Plugins
In reply to: [ECS - Ele Custom Skin for Elementor] Create ordered listI managed throug CSS! Found the solution here: https://www.w3schools.com/cssref/pr_gen_counter-reset.asp
Create a counter (“my-sec-counter”) and increase it by one for each occurrence of the <h2> selector:
`body {
/* Set “my-sec-counter” to 0 */
counter-reset: my-sec-counter;
}h2::before {
/* Increment “my-sec-counter” by 1 */
counter-increment: my-sec-counter;
content: “Section ” counter(my-sec-counter) “. “;
}I run into the same problem in listing the events. A 14 day event gets repeated 14 times instead of once with closing/ending date.
It seems to be solved in the grid- simple list. But I would like to be able to use the other listing options.You need to put the content part in the template. At least, that is what happened in my case 🙂
So the whole process would be:
* Make a Global Template in AE Global Templates
* Edit this page using Elementor
* Add Pods Single Item
* In the Pods Single Item choose your pod and “Adjusted template”
* Check the “Use current post (single) field
* Put template codes (that used to be in Pods Templates) in the bottom field
* In tab Advanced put your custom CSS
* Save the AE Global Template and retrieve the Shortcode for it
* Create a Pod template and put the AE Global Templates shortcode in it
* In Pods Autotemplate options choose this Pod template for Single ViewIt is indeed more of a styling thing @diogowagner; I was just wondering if it was even possible because I really like to use Elementor for my pages.
At first I added only one Single Post Widget with my whole post template in it.
I did want to have more flexibility, so now I added a Single Pods Widget for every field I want to show. This way it is super easy to move stuff around on the page without having to worry the code.Considering I have combined 8 databases all with their own template, this makes life a lot easier for me. To make it even easier I blocked out the Pods Single Item title in the frontend while it is still visible in the backend so that gives me freedom to add a custom title in the code section in the backend.
@jimtrue, I will add this step in the post above, thanks for mentioning.
Forum: Plugins
In reply to: [Custom Content Shortcode] Display hierarchical custom category linksHi Peter, thank you for answering. What do I put in place of [each link]?
#blond
Thanks!
So the whole process would be:
* Make a Global Template in AE Global Templates
* Edit this page using Elementor
* Add Pods Single Item
* In the Pods Single Item choose your pod and “Adjusted template”
* Put template codes (that used to be in Pods Templates) in the bottom field
* In tab Advanced put your custom CSS
* Save the AE Global Template and retrieve the Shortcode for it
* Create a Pod template and put the AE Global Templates shortcode in it
* In Pods Autotemplate options choose this Pod template for Single View- This reply was modified 9 years, 3 months ago by monicharm.
I wasn’t clear; sorry Jim!
I made a Pod Template with just the AE Global Templates shortcode in it.
In the Autotemplate options choose this template for single item view.It works like a charm! You are welcome to share on the Pods forum or website 🙂
Resolved 🙂
I found a workaround that works! Plugin AE Global Templates makes it possible to save a Global Template and use it as a shortcode.
* Make a Global Template in AE Global Templates
* Edit this page using Elementor
* Add Pods Single Item
* In the Pods Single Item choose your pod and “Adjusted template”
* Put template codes (that used to be in Pods Templates) in the bottom field
* In tab Advanced put your custom CSS
* Save the AE Global Template and retrieve the Shortcode for it
* Open Pod and choose Autotemplate options
* Insert Global Template shortcodeEt voila, all done. Happy camper here 🙂
Forum: Plugins
In reply to: [Admin Starred Posts] Use with Pods pluginThat did the trick, thank you Jim!!!
Forum: Themes and Templates
In reply to: [Customizr] Show only children from categoryFound the solution here https://gist.github.com/eri-trabiccolo/964abf97a8038b7ee2b6
Posted this code in functions.php of my child theme and it worked right away!
add_action(‘pre_get_posts’, ‘only_parent_category’);
function only_parent_category( $query ){
if ( is_admin() || ! $query -> is_main_query() || ! is_category() )
return;$query->set(‘category__and’, get_queried_object_id());
}