Fabloria
Forum Replies Created
-
Hi, I’m having exactly the same issue.
And my orders are not connecting to Zapier
Please guide me to the solutionForum: Plugins
In reply to: [Ninja Tables – Easy Data Table Builder] Hide initial display tableYeah it will be useful to provide the CSS code
Thanks
Forum: Developing with WordPress
In reply to: ShortcodesIn one of my theme files
Is supposed to be printed in the header of my websiteForum: Developing with WordPress
In reply to: ShortcodesIn one of my theme files
Is supposed to be printed in the header of my websiteForum: Developing with WordPress
In reply to: ShortcodesThanks Steve
This is what Im trying to do:
if( isset( $textfield[‘input’] )) {
echo do_shortcode( ‘[PluginShortcode]’ .esc_html( $textfield[‘input’] ).’‘);So I’m trying this, if $textfield has a value, it applies the shortcode and prints the value. But is not working.
The plugin that uses this shortcode is already installed. So PHP should recognize it right?
Why is not working?Thanks
Forum: Fixing WordPress
In reply to: Issue with migrationHi @teichlotsen
Sure, my issue happened because my Hosting Provider made a migration, but they didn’t told me, so I had a Cache plugin activated before the migration, and when they did it, this plugin was affecting my site.
Solution:
First I manually disabled this plugin (backend wasn’t working) but it didn’t work completely.
Then I stared to receive the error message:
Fatal error: Class ‘WP_HTTP_Requests_Hooks’ not found in …/wp-includes/class-http.php on line 303”
So my solution was to upload a fresh copy of WordPress and finally, it starting working again.Hope this helps
Forum: Plugins
In reply to: [Media File Renamer: Rename for better SEO (AI-Powered)] Modify UrlWell, thats why Im interested in your plugin. I have some broken images, because I migrated my wordpress site to a linux server. And these urls, have uppercase letters, for example: site.com/uploads/Picture.jpg
So Im looking a plugin that allows me to change the url to lowercase.
Is there a way to do it with your plugin? by any change do you know a plugin that can help me with this?Forum: Plugins
In reply to: [Media File Renamer: Rename for better SEO (AI-Powered)] Modify UrlIt did’t work ??
I changed to “test” but neither filename and url were changed.
Please see screenshot, Am I doing something wrong?
https://prntscr.com/dj6e0xForum: Fixing WordPress
In reply to: Issue with migrationHi,
I was able to fix my website
It was an issue with the migration the hosting provider madeThanks all
Forum: Fixing WordPress
In reply to: Issue with migrationNow Im getting this error in one of my pages
Fatal error: Class ‘WP_HTTP_Requests_Hooks’ not found in /home4/conexion/public_html/wp-includes/class-http.php on line 303
Forum: Fixing WordPress
In reply to: Issue with migrationHi, I just did it and it didn’t work, I downloaded WordPress again and with FTP I installed it again.
But the exactly same pages are not working and I still can access wp-adminForum: Fixing WordPress
In reply to: Issue with migrationHi James
Thanks for your reply.
Yes I renamed the directory of my active theme, I also renamed my plugins directory and it didn’t work. The weird thing is, my home page is loading fine, but others are not for example, my “about us” page. Only a blank page appears.Forum: Plugins
In reply to: [WooCommerce] New Productos not showingThanks Claudio
I just identified the real issue. Products are in the fronted, but If I go the my shop page, I can’t see them there. Any ideas?
Forum: Fixing WordPress
In reply to: 4.4 Update- Browser Title ChangedTry changing it to see if it fixes the issue. If it does, then you know is related with your theme, like mine. Then change it again and go to your editor and add the line
Forum: Fixing WordPress
In reply to: 4.4 Update- Browser Title ChangedHey I just found a solution and I think is NOT related to 4.4.
I changed my theme to Twenty Fifteen and it worked! the title and tag line appeared again. So I think its related to the theme that I bought (Bazien), maybe they need to release an update to fix this error.
This my temporary (and amateur) solution:1. Go to your header.php
2. Replace this line: <title><?php wp_title( ‘|’, true, ‘right’ ); ?></title>
3. For this one: <title><?php if (is_front_page()) { bloginfo(‘name’); } else if (is_single() || is_page() || is_archive()) {wp_title( ‘|’, true, bloginfo(‘name’) ); } else { bloginfo(‘name’); } ?></title>
This will make title appear again
Maybe this will help you