max2411
Forum Replies Created
-
Forum: Plugins
In reply to: [Block Lab] Custom Image Block@sven74Muc: But you can implement these fields by yourself in the block…
Forum: Plugins
In reply to: [Block Lab] JSON errorDo you know how advancedcustomfields handles this? I also have this plugin in use, and the do not have this problem.
Is there maybe any configuration over php.ini to encrease the number of characters, the server accept?
I have the feeling that this error occur with different users at different character numbers. Or?
Forum: Plugins
In reply to: [Block Lab] JSON errorCould this be a problem?
The Request:
http://www.domain.de/wp-json/wp/v2/block-renderer/block-lab/name?context=edit&attributes%name%5D=input-input-input-input-input-input-input-input-input-input-input-input… exeeds over 2,083 characters…Forum: Plugins
In reply to: [Block Lab] JSON errorHi,
I have the same error. This appears when too much text is stored in a Rich Text input field. If I shorten the text, the error disappears. Does that have something to do with the PHP settings?
Forum: Plugins
In reply to: [Block Lab] Repeater – row-indexVery cool, thanks!
Forum: Plugins
In reply to: [Block Lab] Repeater – row-indexUpdate: I solved it with two loops and a counter-variable. It was for an automatic structured data faq-markup:
$j = $i; // i=counter of the first loop
$i = 1;
?>
<!– JSON-LD FAQ-Markup –>
<?php
global $wp;
$url = home_url( $wp->request );
if(block_rows(‘faqfrage’)): ?><script type = “application/ld+json”> {
“@context”: “https://schema.org”,
“@type”: “FAQPage”,
“name”: “<?php echo $url;?>”,
“mainEntity”: [
<?php
while(block_rows(‘faqfrage’)):
block_row(‘faqfrage’);?>
{
“@type”: “Question”,
“name”: “<?php block_sub_field(‘frage’);?>”,
“answerCount”: 1,
“acceptedAnswer”: {
“@type”: “Answer”,
“text”: “<?php block_sub_field(‘antwort’);?>”} }
<?php
$i = $i+1;
if($i<$j){
echo “,”; }
endwhile;?>
]
}
</script>
<?php endif;?>Forum: Plugins
In reply to: [kk Star Ratings - Rate Post & Collect User Feedbacks] ADMIN AJAXOhhh yes, I know this problem and – I really love this plugin – but I really consider to delete it for this reason. Pagespeed is a important point for me and ok, it do not blocks the rendering.
But: I am offering sitespeed-optimization and every customer checks my site before they are calling. And the don´t know that the fully-loaded time isn´t that important, belive me. 🙂Hehe, I also had this. Did you had some structured data on the site but not at the frontend?
Just check your json-ld and so on…. change the strangest an send a “reconsideration request” to google. Then you get them back.
And no, your traffic isn´t hitten by this. John Müller confirmed that.Forum: Plugins
In reply to: [kk Star Ratings - Rate Post & Collect User Feedbacks] Why can not vote!You are using a Caching Plugin, right? Try to set the Cache Timeout twice a day. This works with WordPress fastest Cache.
Hi,
try to set Cache-Timeout twice a day in WPFC. I had the same problem but it worked every time.
Regards
MaxTry to clear the serverside cache two times a day. This works with wp fastest cache. I had the same problem.