theredeclipse
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Minify / combine problemSpacers before <html> indeed were a case. Thanks alot!
Forum: Plugins
In reply to: [LiteSpeed Cache] Minify / combine problemOkay, I’ll try to apply these changes tomorrow(though I think I’ve tried it) and see how it goes, if it won’t help i’ll fill the ticket.
Sure, I’ll glad to help with. Especially for such great plugin! ??
Forum: Plugins
In reply to: [LiteSpeed Cache] Minify / combine problemWell, I succeed only with single page, problem remain on front page. If you can take a look, please https://tauruscrane.ru/
Forum: Plugins
In reply to: [LiteSpeed Cache] Minify / combine problemBut all of them is deleted, Litespeed is only remained.
- This reply was modified 7 years, 5 months ago by theredeclipse.
Forum: Plugins
In reply to: [LiteSpeed Cache] Minify / combine problemWell, I played with it a little bit. Had same problem with another static page. Managed to fix it by copying whole markup from another page(include template name file) and then put old markup back by three parts and renamed template file to new name. And voila – same old markup and plugin works.
Weirdo behavior… At least it works now. I’ve tried aswell to purge all cache/disabling plugin but with no luck. Haven’t any of caching plugins installed, though before had installed w3 cache and velocity minify. Velocity for a week or so worked with Litespeed Cache(minifying and combining options were disabled in Litespeed), but as I find that Velocity crashes markup with Litespeed I’ve deleted it and enabled minifying/combining settings in Litespeed Cache.
Forum: Developing with WordPress
In reply to: Get content of a child pageOh, my fault. Thank you so much, everything works now :3
Forum: Developing with WordPress
In reply to: Get ID of a child pageI’ve tried, but it returns “Array” instead of page ID.
Forum: Developing with WordPress
In reply to: Related pagesAnd I’m back. Just tried one more thing. I’ve copied my theme files into empty twentyfifteen folder and voila – everything works. Switched back to original theme folder – getting errors… A very interesting behavior.
Well, at least I can to proceed. Tried to rename twentyfifteen folder and everything works as should, heh.
Forum: Developing with WordPress
In reply to: Related pagesNope, currently it haven’t any other function, just few basic needs like apply filter and add theme support. I realized that I couldn’t put any function into functions.php, stable getting that error
I can upload it as get back home
Forum: Developing with WordPress
In reply to: Related pagesEven with totally random letters “fdfdrxccf” it gets same error.
Forum: Developing with WordPress
In reply to: Display name of parent page in child pageIt did the trick, thanks alot!
Forum: Developing with WordPress
In reply to: Display name of parent page in child pageThanks for the reply,
It works, but it haven’t separator / spacing. To make this thing even better: its possible to display latest category “pictures”, without category “catalog”?
Forum: Developing with WordPress
In reply to: Row loopThanks a lot! Everything works now.
Forum: Developing with WordPress
In reply to: WP_Query Show posts for categoryIt works now. Thanks a lot! :3
- This reply was modified 7 years, 9 months ago by theredeclipse.
Forum: Plugins
In reply to: [bbPress Advanced Statistics] Customize Using functions.phpHello, I have a similar problem, I want to customize output of module, change styles for my custom theme.
I’m pretty new to php, I’ve tried for test purposes to rework output of heading text but with no luck(in bbpress functions), it gets white screen of death. Guess I doing something wrong, can you tell me how to do this in a proper way?
add_filter('bbpress_hook_get', 'statistics'); function statistics() { if ( bbpress_hook_get() ) { echo '<h1 class="font_1">' . wp_kses_post( $this->parent->option['before_forum_display'] ) . "</h1>" } }