Szymon Skulimowski
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] CDN + Minify CSS = fonts issueYes, that solves the issue, thanks!
Forum: Plugins
In reply to: [LiteSpeed Cache] CDN + Minify CSS = fonts issueThanks for an update! I extended scope of the tests and my issue isn’t about only fonts but all relative links in CSS.
original CSS:
.test {background: url('../images/image.png');}
CDN on, Minify CSS off:
.test {background: url('../images/image.png');}
CDN off, Minify CSS on:
.test{background:url('/wp-content/themes/dr/images/image.png')}
CDN on, Minify CSS on:
.test{background:url('https:https://domowejroboty.r.worldssl.net/wp-content/themes/dr/images/image.png')}
My configuration:
* https://i.imgur.com/NyyxoR9.png
* https://i.imgur.com/J8Gznua.pngForum: Plugins
In reply to: [LiteSpeed Cache] Feature Suggestion: Simple CDN SolutionI’m also really looking forward to it.
Forum: Themes and Templates
In reply to: Best practice for Custom Post Type Archive pages?Great, I’m keeping my fingers crossed ??
Forum: Fixing WordPress
In reply to: Help finding my static page?Hi! You can log into admin area (https://hotchatr.com/wp-admin/) and go back to the homepage. Then, on the top of the page there will be a black bar. When you click on the “Edit page” link you will get a page you are looking for.
You can also check “Settings / Reading” page in the admin area. Under “Front page displays / A static page (select below) / Front page” option you will see a the name of the page you have set.
Forum: Themes and Templates
In reply to: easiest way to mirror site for trackingYou can use a special variable like:
- /example.com/
- /example.com/?v=2
- /example.com/?v=3
And then in the code you can use:
$v = $_GET["v"]; if ( $v == 2 ) { // code for v=2 } elseif ( $v == 3 ) { // code for v=3 };
Forum: Themes and Templates
In reply to: Best practice for Custom Post Type Archive pages?Hi Neil!
So, you are trying to get a custom post type archive page with an editable text, right? There is a third method and I’m using it quite often:
- create cpt with has_archive set to true;
- add a special text field somewhere in the admin area (e.g. customizer or ACF plugin with Options addon);
- create archite-cpt.php file which will echo previously entered field.
Cheers!