fullworks
Forum Replies Created
-
It would be interesting to see if there is a ‘built in’ method to do that.
Of course it is possible and could be done with probably less than 20 lines of code. If you are a coder I can point you in the right direction.
There may well already be a plugin to do similar.
Forum: Everything else WordPress
In reply to: ButtonsThis looks like a button generated by Elementor rather than generic WordPress.
You may get a better answer directly from the Elementor support forums.Forum: Everything else WordPress
In reply to: [NSFW] Question mark after new serverHave a look at the actual database & database table charset & collations.
Forum: Everything else WordPress
In reply to: WordPress RedirectionI don’t think this is directly a WordPress question.
Most people use .htaccess to redirect domains a quick search for
how to redirect a domain with .htaccess
should find you plenty of tutorials
Forum: Developing with WordPress
In reply to: Pushing Staging Site LiveAs WWP Staging Pro is a premium plugin, you are best to ask directly through their support channels for the support you have paid for.
Forum: Everything else WordPress
In reply to: Website saved templatesI think, perhaps this is a Elementor question, relating to Elementor templates. As both pages are using the default page template from a WordPress perspective.
You might get better support directly on the Elementor support forums.
Forum: Developing with WordPress
In reply to: Changing Permalink Structure, will it hurt SEO?My question, can I just change my permalink settings while the site is live
yes
Will google crawl the site while it’s in maintenance mode?
Depends how, WP doesn’t have a user enable maintenance mode feature, most people use a plugin and the settings will control bots.
Do I need to redirect all posts and pages?
Depends if there is any real SEO value. If you have a lot of inbound links for instance then you will want to do this very carefully.
Forum: Fixing WordPress
In reply to: Linking database and websiteHi,
First may I say ‘Warnings & Notices’ are not fatal or critical errors.
That said they often precede them. Can you not post the exact messages here? It would help.
Hey,
I’m just guessing here, but media is just a post type ( of attachment ) so why would it not apply? Have you seen that or found out another way?
Forum: Installing WordPress
In reply to: Error while trying to install WordPressA clue is
Unable to accessIt is possible that your file permissions are such that the web server can not read the uploaded files.
You are in for some heavy development there.
I found one opensource library https://github.com/PHPOffice/PHPPresentation that might help you with the project.
Forum: Fixing WordPress
In reply to: Split text when printing pagesYou need to examine the html that is being split and then use the right selector.
Forum: Fixing WordPress
In reply to: Checking if a page is a child page not taking effect.Your theme appears to be built in a very different way to most, it appears to be totally dependent on javascript with no fallback which means – unless you tweak some code you are unlikely to be able to use css.
In your example about your
second level child page:is simply not a child page as it – post_parent = 0 is a top level page.Do you have a screen shot of page editor of the child page showing it has a parent page?
Forum: Fixing WordPress
In reply to: critical error on new installHi,
json_decode()is a core PHP function, which means to me that the issue is not specific to WordPress but your hosting. It is possible the PHP function has been excluded by your host.In the first instance I’d raise a support ticket with your host, you should only need
Fatal error: Uncaught Error: Call to undefined function json_decode()
for them to understand.- This reply was modified 5 years, 3 months ago by fullworks.
Forum: Fixing WordPress
In reply to: Split text when printing pagesSorry that you are struggling with this.
@media print { img { page-break-inside:avoid; } text { page-break-inside:avoid; } }Is CSS so it is not specific to WordPress or Elementor but the way websites work in general with HTML.
The issue you have is
textis not an HTML element so will not be recognized.You need to use valid HTML e.g.
pfor paragraph@media print { img { page-break-inside:avoid; } p { page-break-inside:avoid; } }see https://codex.wordpress.org/Styling_for_Print#Page_Breaks for more examples