alichani
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove Home Page link/textForum: Fixing WordPress
In reply to: Gallery images disappear@gerardodb,
IT looks like the address changes when I click one of the Galeria links but the code comes from the about page. Have you, or a plugin, modified the site’s htaccess file? You can find a basic one and more information at the link below.Forum: Fixing WordPress
In reply to: Open Graph Troubleshooting@brianpunch
the<div class=”primary”>
goes after the</head> <body>
. Essentially you want it to be inside the body. The way you have it now it’s outside the whole html and it’s causing validation errors and, possibly, Facebook bot to have a fit.
It creates a div on a document that hasn’t yet started (it starts at <html>).Try putting it at the end of header.php or after the
get_header();
in page.php. You may also need to move the matching</div>
inside the <body> element in footer.php- This reply was modified 7 years, 2 months ago by alichani.
Forum: Fixing WordPress
In reply to: Add to cart button not working after installing sslWell it doesn’t work for me
I get errors in the Firefox console. @hotbrandspk Try to contact the “Kuteshop” authors to see if they can help you. Since it’s a premium theme they should help you. Link to Kuteshop Support.
Firefox Console Error- This reply was modified 7 years, 2 months ago by alichani.
Forum: Fixing WordPress
In reply to: Unable to link wordpress blog with WordHi @ektagoel04,
www.ads-software.com and WordPress.com are two different things. www.ads-software.com provides the software to host your own site on your own server, while WordPress.com provides a hosted service. Since you are using WordPress.com you should use their support at Worcdpress.com Support PageYou can read this article for the differences WordPress.com vs www.ads-software.com.
Word?
Apparently Word allows you to create blog posts. You provide login credentials and it uses XMLRPC to post. Who knew…?
Forum: Fixing WordPress
In reply to: Gallery images disappearHi @gerardodb,
is there supposed to be a gallery on the “Galeria01” page? I can’t see it or any relevant code there. All I see is your contact info like in the “About” page.
You may want to create a gallery with the built in functionality, disable all plugins and switch to one of the default (twenty-xxxx) themes to help troubleshoot.Forum: Fixing WordPress
In reply to: Images not showing when shared@joeguyski,
I am wondering whether serving og:image from a secure connection (https) trips Facebook. They state the following:og:image URL for the image. To update an image after it’s been published, use a new URL for the new image. Images are cached based on the URL and won’t be updated unless the URL changes.
og:image:secure_url https:// URL for the image
In the above they also state that for images to refresh they need to change URL. Maybe try to reupload or in some way change the image URL to get Facebook to download the image again.
Maybe also try disabling Cloudflare while debugging to cut out one, potentially troublesome, middleman.Forum: Localhost Installs
In reply to: I can not put imagesHi @dfart,
you will need to provide some context to your questions. What theme are you using? What’s your site’s address (if it’s online)?Hi @moskitobikers,
the themes in the www.ads-software.com Theme Directory are all free. www.ads-software.com does not contain any paid themes. The “Crane” theme you found is a paid theme made by a company named Grooni and their website.You can probably buy the theme at their site and they will give you instructions on how to install, use and customize the theme. This goes for all paid themes
Forum: Fixing WordPress
In reply to: Contacts not wrappingHi @marctjason,
since Assurance is a premium theme you should report problems to the theme authors. After all you have paid for the support. We do not have access to premium themes and therefore can’t review their code.Forum: Fixing WordPress
In reply to: Images not showing when sharedHi @joeguyski,
Your “head” code seems to be, in large part, duplicated. There are two sets of Open Graph tags, 2 FB Pixels etc.
There also seem to be 2 closing head tags as in the screenshot below.
Head closing tag duplicationYou may want to check your theme’s header file.
- This reply was modified 7 years, 2 months ago by alichani.
Forum: Fixing WordPress
In reply to: Open Graph TroubleshootingThere is also a
<div class="primary">
as the first thing in the page source before the <html> element. Maybe an error in the theme header? That could be throwing Facebook off. The tags themselves seem to be OK.
https://prntscr.com/hsnmjiEdit: Actually that’s exactly what FB Object Debugger complains about
- This reply was modified 7 years, 2 months ago by alichani.
Forum: Fixing WordPress
In reply to: 504 ErrorsHi @johnhelps,
taking a wild stab here as I have never used Vaultpress.
A 504 error means the server is waiting for another server which doesn’t respond “on time”.Has the htaccess file been modified? What have you changed while trying to fix your initial issue?
You can find a basic WordPress htaccess here https://codex.www.ads-software.com/htaccessForum: Fixing WordPress
In reply to: Upload HTTP error – File uploads, WP breaks@cmb42,
Are the thumbnails generated at all? There is a ticket open that may be related
what version PHP are you running? If 7.1 try using 7.0
You an also try using GD instead of Imagick by adding this filteradd_filter( 'wp_image_editors', 'change_graphic_lib' ); function change_graphic_lib() { return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' ); }
Forum: Fixing WordPress
In reply to: Wp-login refreshes instead of logging inYou are not rude. I just read “disable theme” as “switch to default theme”. Sorry for the confusion.
There may be a PHP or web server log you can check. My server eg outputs PHP errors in the root web directory in a file named “error_log”. There may be another one in wp-admin.