andreasTypo
Forum Replies Created
-
Thanks for your clear feedback Sybre!
Hi Sybre,
Thanks for the quick feedback. Is there any way to pass this warning without deactivating the plugin? Sounds like they want to do a checksum on the server due to a bot attack (not related to this plugin). The warning stops the process.
Thanks for any tips.
RegardsThat is correct. Our hosting provider contacted me while doing some checks and said following;
[~/public_html]# wp plugin verify-checksums –all
Parse error: syntax error, unexpected ‘)’ in /wp-content/plugins/autodescription/inc/functions/api.php on line 117
A critical error … and so on.On the backend part of the site I never noticed any issues, that’s why I don’t really understand why I’m getting contacted for this.
Regards
Hi Sybre,
I deleted and re-installed the plugin, but I see the same thing in the code.
I provide a screenshot here: https://badendouche.be/wp-content/uploads/2023/12/auto.pngRegards,
AndreasForum: Plugins
In reply to: [Appointment Hour Booking - Booking Calendar] Outlook calendarThanks, consider it done 😉
Regards,
Andreasminor update
Putting it all together as such fixes the rogue “[/restrict]” tag;<?php if (get_field('portfolio_item')) : ?> <?php echo do_shortcode("[restrict role='subscriber']".wp_kses_post(the_field('portfolio_item'))."[/restrict]"); ?> <?php endif; ?>However, content is shown even though a visitor isn’t logged in with subscriber access, so the plugin functionality loses its purpose now.
Thanks in advance.
RegardsFound this post
https://github.com/CalderaWP/Caldera-Forms/issues/3106I personally downgraded to stable 1.7 version
Exact same error, but for my language nl_NL
Forum: Plugins
In reply to: [Appointment Hour Booking - Booking Calendar] Add end hour to booking slotsAwesome! Looks amazing 😉
I’ll try to keep giving constructive feedback.Great plugin!
Hi,
Thanks for your quick response.
I’ll look into the separate calendar option, but I think I’ll buy the commercial version as well since this seems to be a nicer way of displaying just one calendar for booking purposes.Thanks!
Forum: Plugins
In reply to: [Basic Google Maps Placemarks] conflict with "Page Builder" pluginsFound a fix for this?
Just posted this and then found this thread..
https://ww.wp.xz.cn/support/topic/bgmp-and-siteorigin-page-builder
Hi,
I requested admin demo and took a look.
Placed an order but still can’t seem to figure out where the font specs and uploaded files are for an order?Thanks you for the quick update on that matter.
Does the pro version also support translation to NL? Or is there a way to translate the interface of the plugins frontend?Thanks.
Forum: Themes and Templates
In reply to: Add featured image support to headerIf someone stumbles upon this post and is looking for the same thing, hopefully by then it will be answered here:
https://colorlib.com/wp/forums/topic/add-featured-image-support-to-header/Forum: Plugins
In reply to: [Custom Post Type UI] Display custom post type as tabbed contentYes I know the idea is possible, that’s why I’m asking on different forums but no one seems to have a direct answer to this question.
The problem is that the codepen you gave (which I already found a few days ago) has numerical values which separate them from each other.
I’m looking for a good example to get some insight, but I’ll continue looking then.
If I ever get this figured out I’ll be sure to post it here so if anyone tries to accomplish the same thing they won’t have to look so long for the answer.
I have the query as such
<ul> <?php $args = array ( 'post_type' => 'uitgeverij', 'categorie' => 'distributie-pers-promotie', 'posts_per_page' => '-1', 'orderby'=>'title', 'order'=>'ASC' ); $the_query = new WP_Query( $args ); ?> <?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <li><a class="dispp"><?php the_title(); ?></a></li> <?php endwhile; endif; ?> </ul>Don’t know if it’s correct, but since the actual content is in another div I repeat the array and specs of it again to display the content, otherwise I could only get the content of the last post in the list
<?php $args = array ( 'post_type' => 'uitgeverij', 'categorie' => 'distributie-pers-promotie', 'posts_per_page' => '-1', 'orderby'=>'title', 'order'=>'ASC' ); $the_query = new WP_Query( $args ); ?> <?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <?php $thumbnail_id = get_post_thumbnail_id(); $thumbnail_url = wp_get_attachment_image_src( $thumbnail_id, 'thumbnail-size', true ); ?> <div class="dispp"><?php the_post_thumbnail( $size, $attr ); ?> <?php the_field('omschrijving'); ?> <p><a href="<?php the_field('website'); ?>" target="_blank">Ga naar de website</a></p></div> <?php endwhile; endif; ?>PS this is just some more info if anyone stumbles upon this post and sees what I’m totally missing 🙂