ramjam
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] “Search Results for” translate titleYour solution worked for me!
Is perfect, no plugins or template modifications.
I also learned how to use URL parameters 🍻Thank you!
$.validate is not a function is given on the terminal when you click to edit an event.
Forum: Themes and Templates
In reply to: [Tatva Lite] Static front page not displaying contentSame problem Here.
Quick fix.
1) add an empty page and put it like front page
(it should be empty because the content on it never will be shown)2) add a static page where your home content is, in my case its “inicio”
3) edit your header.php on line tree and paste the following code
if($_SERVER['REQUEST_URI'] == "/"){ header('Location: /inicio/'); }/ means the main directory, if your wordpress is under a sub folder with name “subfolderX” the code must be like this:
if($_SERVER['REQUEST_URI'] == "/subfolderX"){ header('Location: /inicio/'); }change subfolderX for whatever your folder name is.
change ‘inicio’ for whatever your home content is.This example require the clean URL configuration enabled, but can be changed for your needs.