I have a wordpress site, it works with nginx, I am moving the front end to laravel but still using the wordpress admin. I am making this change little by little and at this moment I would only want the home to load laravel and the rest remains Wordpress, is this possible? is there any way?
I'm trying to add pages made in laravel to the wordpress site
Related
I have a multilingual laravel application. My url structure like that:
https://example.com/en/paths
https://example.com/es/paths
I installed wordpress in /public/blog. It is working successfully.
I also installed WPML plugin in wordpress then url structure was like this,
https://example.com/blog/en/blog-paths
https://example.com/blog/es/blog-paths
So my first URL structure is broken. This is a situation I would not prefer for SEO.
Any advice on how to install wordpress inside Laravel application, keeping the multilingual url structure?
I want to result url structure like this instead of above schemes,
https://example.com/en/blog/blog-paths
https://example.com/es/blog/blog-paths
I'd try to install Wordpress inside public folder of your Laravel app that is in charge of responding to example.com via app/public/index.php
Thus, every request to app/public/blog/ will be handled by WordPress.
Imho, this setup save your current url structure and do not interfere in any way.
Probably you have to adjust your Nginx config, but that is another question.
I just purchased cornerstone page builder which is a drag and drop website builder. The problem I have right now is that it works as a wordpress plugin making me access it through the wordpress admin panel.
Is there a way for me to remove everything "wordpress related" to basically hide everything that has to do with wordpress and just let me access the plugin without signing in to wordpress, maybe using my own log in function?
I'm building a Wordpress site for a friend, and she asked me to "put the old site back up" while I'm working on the WP site. The old site lives in a /verb subfolder, so I put a PHP redirect in the domain/index.php page to the domain/verb folder.
Now, when I go to work on the WP site, it just redirects to the old site. Is there a better way to do this? I need a way to develop the WP site while visitors are sent to the old site.
Note: Her site is on godaddy, which means I didn't install WP myself and can't really move the WP installation to a sandbox area while I'm working on it. Is there an .htaccess trick I could be doing, maybe?
It's been a while but I'm pretty sure i've used a plugin before that allowed me (when logged in as an admin in WP) to view the site using a different theme than the one the rest of the world is seeing.
You could copy the active theme and change the name, making your alterations on the new theme while leaving the currently active theme untouched.
This would only work if you were re-skinning the site and not modifying any of the database content.
A quick google search came up with this plugin: https://wordpress.org/plugins/theme-test-drive/, but there may be others out there...
I´ve been looking for some help in different sites, hope I can find it here. I have developed a web application using codeigniter, and the client wants to integrate it into it site which has a wordpress installation. The site has some pages like contact, blog, platform...
The application has a login/sign up screen and works with sessions.
So what i´m trying to do is to put the codeigniter code into the wordpress file system and be able to access to the application into the wordpress domain. Right now is something like this:
WP Dir/
wp-content/
...
...
codeigniter dir/
httpdocs/
application
views
...
httpdocs/
application
views
...
So wordpress is working, but when I try to go into www.webpage.com/codeigniterDir/login trying to log into the application, the page is almost empty, only has the wordpress header and footer. Hope u guys can help me, ty!
We have a Wordpress website currently working and want to migrate to Laravel 5. For some reasons we want the website to be moved part-by-part. Every newly redesigned page will be implemented by Laravel and old pages still remain on Wordpress.
I want if there is a route registered for current URL in Laravel, then load it from Laravel, else let Wordpress to load it.
We don't want to have any /wordpress/ in URL. Also the administrations panel should still be accessed using /wp-admin url without any prefix.
Is there any clear solution for this?
Actually the solution exists. Recently, I managed to migrate my Wordpress site to Laravel "gradually". At first, I "combine" Laravel to use WP database using Corcel package. And the routes were still handled by WP, which Laravel just catch the full URL request and passed it to controller like this:
Route::get('/{ids}', 'UrlController#withIds')->where('ids', '^(?!admin).*');
where the {ids} was just passed to WP's get_page_by_path($id); function and returned the data to the blade template.