readysite
Forum Replies Created
-
I use theme blocksy and it was there by default, I tried to use it earlier in this same theme, and I didn’t like that the block indents were very hidden, and it was hard for me to poke around until I found what I needed, it’s annoying.
Now I didn’t notice and again used the default one that was in the WP theme, and again I ran into a problem. I understand what you’re writing, but I wrote to you what the reason was supposedly, and your task is to study, test, figure it out.
After I used it, I’ll say: it’s complicated (because there are a lot of settings), but you can adapt, I tried to change the rating yesterday, but I couldn’t, I don’t have access.
I found a problem, because the page builder code is very large, WordPress saves page revisions in the database after each page save as a separate build. But I have never encountered such a problem.
Thanks for the plugin! It partially solved the problem, but I don’t understand why there were so many duplicates in the database. I copied the code from one page and pasted it on another, then I just changed what was needed.
- This reply was modified 1 year ago by readysite.
this is your plugin, the page takes up 700 kb, and it multiplied many copies, I don’t understand by what logic
I take the code of the finished page and put it on the new one, for some reason it is written into the database in 5-7 duplicates, this is trash
this is terrible, again I didn’t pay attention and used your plugin and what did I get my database is 300 mb for 51 pages
Forum: Themes and Templates
In reply to: [Blocksy] Why is my database so big?but how? you use it yourself, you should know.
Forum: Themes and Templates
In reply to: [Blocksy] Why is my database so big?how about using GreenShift??
I used the blocks that were in the preview blocksy/consultant/ and nothing more, I created the same 60 pages using the same page template
Forum: Themes and Templates
In reply to: [Blocksy] HTML block header dont work correct polylangNow everything is great, once again I am convinced that this theme is the best. At first I thought that I needed to create a separate header for another language, but as it turned out it was not necessary, the entire translation appears in string translations
Forum: Themes and Templates
In reply to: [Blocksy] HTML block header dont work correct polylangit’s done! Thank you! I did the header in builder. Turns out the translation is saved to the string translation
Forum: Reviews
In reply to: [Share This Image] change urltelegram: https://prnt.sc/MtLn77JeHM7-
Forum: Reviews
In reply to: [Share This Image] change urlyes, thanks, it also duplicates the link to the page.
it is ridiculous to claim that your theme and plugin are optimized for seo and supports Yoast seo, the archive page when selecting category and city does not work with any seo plugin! title does not change in any way on the search archive page. This is a pointless theme without seo optimization!
Forum: Reviews
In reply to: [Share This Image] change urlthank you! but how can I make it so that it sends only a link to the image (without a link to the page)
Forum: Themes and Templates
In reply to: [Blocksy] Adding category countit worked! thanks, you are the best
Forum: Themes and Templates
In reply to: [Blocksy] Adding category countin the category name h1 at the end, and in the page title
I want to display the number of posts in a category
I found this code on the forum and I can’t adjust it to the theme:
function custom_add_count_on_archive_title( $title ) { $term = get_queried_object(); if( $term instanceof WP_Term && ‘category’ === $term->taxonomy ) { $title .= ‘ (‘.$term->count.’)’; } return $title; } add_filter( ‘get_the_archive_title’, ‘custom_add_count_on_archive_title’, 10, 1 );