voala
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Facebook Thumbnail Issue. Really need some help.P.S. The first solution did not worked because that is a fix for static pages, not dynamic like wordpress is. Hope this works.
Forum: Fixing WordPress
In reply to: Facebook Thumbnail Issue. Really need some help.Ok, Try this out.
https://www.wpbeginner.com/wp-themes/how-to-avoid-no-thumbnail-issue-while-sharing-post-on-facebook/[Code moderated as per the Forum Rules. Please use the pastebin]
As this link says, you go to functions.php of your theme folder and insert this code (inside the PHP brackets). Replace the https://example.com/image.jpg with the location of the image you want to display when the post has no featured image set to it.
By the way, you use featured images to your pages or blog posts?
Forum: Fixing WordPress
In reply to: Images disappeared from website – please help!ok, the file is located as follows:
https://www.yoursite.com/wp-content/uploads/month/day/filesIf you cannot load the images maybe they are not there. Maybe deleted.
What is the file location that you trying to acces?Forum: Fixing WordPress
In reply to: Facebook Thumbnail Issue. Really need some help.Usually, facebook selects the first image it comes across on your page or blog post. You can take a look at this page: https://wordpressdevelopment.com/blog/tips/how-to-specify-a-facebook-thumbnail-when-sharing-a-post/
Forum: Fixing WordPress
In reply to: Updated theme, now menu doesn't update!Maybe the Main Menu you had before got deselected in the new theme. Check this out in Appereance > Menus at top left corner what is the main menu selected? Is your menu or there is nothing selected?
Forum: Fixing WordPress
In reply to: Images disappeared from website – please help!First of all, the image files are still on your server? Maybe they were deleted. Check the wp-content/uploads folders. Or, you can go to a post that contained images, open it, change to HTML view and loog for the <img src=”file location”> tag. You can copy the file location and load it into a browser window. See if the image displays.
Forum: Fixing WordPress
In reply to: Blank screen-WordPress SITEIf you installed a theme and you cannot view the front end of your site, just go to admin panel and change back to the theme used before. No matter what theme you will install it will not block access to the admin back panel. Deleting the files will not work unless you select another theme from the admin panel.
Forum: Fixing WordPress
In reply to: I think I broke my sitejust download the archived wp zip file from https://www.ads-software.com/download/. Unzip it, and you will find the index.php file in there. Upload and overwrite the file by FTP and that is that.
Forum: Fixing WordPress
In reply to: Can't upload imagedoes it give any error that the file size is to big?
Forum: Themes and Templates
In reply to: how can i change the color of my footerI think you should look for a css style in the footer.php of your file. The css might be directly on the #footer div. check for a line
background: none repeat scroll 0 0 #32527A;
. The #32527A is the color of the background now. Look somewhere at line 17 of the file.Valentin
Forum: Fixing WordPress
In reply to: permalinks problemhello
thanks for the reply.
But my problem is that my htaccss file is not there anymore. I know how to write the htaccess. I don’t think that the problem is from showing dates.Forum: Fixing WordPress
In reply to: Font-family problem and picture alignment in tableYes, i seen now that you have a child theme, so the theme is influenced by 2 css files. This is a bit of a problem. First of all from what you wrote above, you have the
margin: 0 0 1.625em;
that will now work withmargin-bottom:10px;
The margin CSS rule can be used as following: margin: top right bottom left, or margin-top margin-right margin-bottom margin-left. Hope you understand. So instead of the two mentioned above, replace with
margin: 0px 0px 10px 0px;
The css class that define the td in your site are as follows:
.entry-content td, .comment-content td
in twentyeleven_child/styles.css at line 110
and
.entry-content td, .comment-content td
in twentyeleven.styles.css at line 786Valentin
Forum: Fixing WordPress
In reply to: WP.com export to WP.org importHello.
I recommend to use Xcloner plugin.
It makes backup of wordpress website, and can be used to move entire website. It backups Database and files into a archive.On the new domain fresh installed wordpress install xcloner and upload the backup from oringinal domain. Just hit restore. Xcloner can add a clear command to sql db si it will write the entire db from oringinal website to new one.
give it a look.
https://www.xcloner.com/Valentin
Forum: Fixing WordPress
In reply to: Font-family problem and picture alignment in tableOk, for the images,
Go to styles.css line 786.
There is a padding that prevents the align center of the image. Change frompadding: 6px 10px 6px 0;
topadding: 0px;
Also add bellow that line atext-align:center;
As for the space below the tables
In styles.css line 770 add a:
margin-bottom:10px;
(replace 10 with your own size)I think this will do the trick.
Waiting for your reply.Valentin
Forum: Fixing WordPress
In reply to: Font-family problem and picture alignment in tablecan you please give us the link of your website to give you the solution? Maybe the exact page link that you wish to modify.
Valentin