I bougt a renew and need a bill for these.
No answer…
What is going on here?
]]>Notice that the Purpose Statements section has been moved up. Now, what should happen on the front-end is the purpose statement should go to the top of the page by getting its position through the ACF code.
Right now, what I’m doing is simply moving my HTML codes to certain locations so that I could sort the sections. However, my client is not familiar with programming so they want to be able to accomplish this through the page editor.
Is there a code to get the position of the custom field section based on how they are currently sorted on the page editor?
Thank you so much.
Kind regards,
Benj
I’m using CFS, and I need to create filters with the data I’m using in.
I wonder if there is any filter for CFS that I can use.
Thanks in advance!
]]>I have made a field “Deal screenshot” which is visible in backend en where i can put in my text. But in which file do i need to add the data so it can be visible on frontend?
You see the tab “Beschrijving” above the long description. What i want is to add the above mentioned also as a tab. Is this possible and how can I do this?
Hope that someone can help me.
]]><?php
$counter = 1; //start counter
$grids = 3; //Grids per row
$args = array(
'posts_per_page'=> 1,
'ignore_sticky_posts' => 0
);
$query = new WP_Query($args);
if($query->have_posts()) : while($query->have_posts()) : $query->the_post(); ?>
//Do stuff
<?php $counter++;
endwhile;
endif;
?>
When I comment out sections, it appears that the “while($query->have_posts()) : $query->the_post();” is causing the error. Any idea why this would be?
]]>