voala
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Facebook Thumbnail Issue. Really need some help.Ok all.
I cracked it.Recently I made a new website for a customer and hit the same issue with facebook like button not showing images from the post/pages. I spent a few nights and found the sollution.
Problem is this: Not from long time ago, facebook changed the way like button works. In order to have a facebook like button on your webpage you need to make an API on the developer section of facebook.
This is what i made:
1. I installed Facebook AWD All in One plugin. A great plugin for managing all facebook utilites. (Like Button, Like Box, Comments, Login Button)2. After installing, the plugin requires setting up. You will be asked to insert a API id, Admin id, Page Admin id.
3. Ok. To build a new API to the following:
a. login with your facebook account
b. go to https://developers.facebook.com/apps
c. top right corner press Create new APP
d. you will be asked for the name of the app, link of website, description, etc.4. In the bottom part you will have to select how this API will be used. Section is called: Select how your app integrates with Facebook. Here select Website
5. After API creation you will be provided with the API id, API secret (needed for Facebook Login).
6. Take all this information and insert in plugin settings. After that configure the rest of the FB utils (like button, like box, etc.)
The plugins uses OG tags, and has many options for ex to use custom tags for each page, or use global tags.
Very IMPORTANT: After doing changes to tags, you can test the way facebook shows the wall post from your website. You can load: https://developers.facebook.com/tools/debug
Keep in mind this: Facebook caches information recieved from your website. You need to clear the cache by loading the debugger above. If not after you make changes to OG tags, the wall post will look the same. This is maybe why none got any visible result after adding editing OG tags in theme header.php
For me it worked great. Now I can select the images i want to display from the page/post when making a wall post.
Waiting for your feedback.Forum: Fixing WordPress
In reply to: Facebook Thumbnail Issue. Really need some help.Yes, but if the problem is from facebook side why other websites work? For ex. i just made a share of one of my posts from my website just to check and it all works ok. Title, description, image, etc.
I am using the AddThis plugin for social sharing.
For your facebook do you h ave https or http? you know that facebook recently changed its default setting from secured to unsecured.
And again, if it is a facebook problem, than why doesn’t it work only for some websited and some work. For ex try to share one of my posts from http://www.inteligraphics.ro and see if it loads ok in your facebook wall.
Forum: Fixing WordPress
In reply to: add media, imagesreally great to hear that.
Forum: Fixing WordPress
In reply to: Separator between links in vertical navigation menuyes, this is great. i didn’t thought of this.
Forum: Fixing WordPress
In reply to: Separator between links in vertical navigation menuHow? I am really interested in this.
Are you referring to the list-style-image css rule applyed to the LI?Wouldn’t this show in front of the LI element?
Forum: Fixing WordPress
In reply to: Separator between links in vertical navigation menuYou can use the same solution as that other site but this would mean to edit a widget with the button links. But for your client if he has no html experience at all will be hard to add new pages.
Forum: Fixing WordPress
In reply to: Separator between links in vertical navigation menuOk.
The site you gave for reference used a manual made menu in the left. It is not auto-generated by wordpress if you understand what I mean. In your situation, the menu is generated by wordpress using te UL and LI tag elements.
For using a vertical separator you can only use solid, dotted, etc.. lines of various colors and widths attached as a CSS rule to your top-border of the LI element.
Forum: Fixing WordPress
In reply to: Widget widths in sidebar inconsistent in ie 8no problem.
i am glad you figured it out.Forum: Fixing WordPress
In reply to: No images or videos from wordpress to facebook wallsI think you have the same problem as here:
http://wordpress.org/support/topic/facebook-thumbnail-issue-really-need-some-help?replies=26The difference is that the problem there are pictures not showing in Facebook posts to wall.
Take a look at what has been discussed there. Maybe it will help.
Forum: Fixing WordPress
In reply to: add media, imagesAre you using the media manager?
In post/page editing window from admin panel press the add image button (first one after Upload/Insert text) and it will open the media manager. From there press the Select Files and the files selected will be uploaded and will be available ONLY for the current editing Page/Post. After that you can go to the gallery tab, press the show link in right of the needed picture and a menu with options will drop down. From here after setting the needed option press Insert into postFor more info i think you will find information in the codex.
Forum: Fixing WordPress
In reply to: Separator between links in vertical navigation menuCan we see a link to your website to see the exact menu? I think this can be done by CSS.
Forum: Fixing WordPress
In reply to: theme is causing troubleOk, but the two are not the same.
I don’t understand where the problem is 🙂You can generate more menu in the Appearance > Menus
The main menu is specified in the top left corner of the window. I think that in your case is the top menu on the blue background. (this depends on the theme)Forum: Fixing WordPress
In reply to: theme is causing troubleI don’t understand. Do you want to display 2 different menus? One on the top and one at the bottom of the page?
Are you referring at the blue menu on top and the white menu just below the logo?
Forum: Fixing WordPress
In reply to: Facebook Thumbnail Issue. Really need some help.@threedogmoon i think you have the same problem like 21CB. Did you tried to insert the Open Graph tags in the header.php file of your theme? This seems to be the solution for most people.
P.S.: Don’t need to be mad if no one reply’s to your post. Everybody here is giving help and support in their free time and because we want to see more people make use of the benefits of WordPress platform.
You can always hire a freelancer to get things sorted out. This is free support, and maybe sometimes people are busy, or your post just got overlooked, or maybe nobody had any idea what to do.
Forum: Fixing WordPress
In reply to: How do i change my post font size?Ok, go to the css file of your theme. This is located in http://www.hostilegamer.com/wp-content/themes/news-leak/style.css
Open it and go to line 1301. There you will find:
#content p, #content ul, #content ol, #content dd, #content pre, #content hr { margin-bottom: 15px; }change to:
#content p, #content ul, #content ol, #content dd, #content pre, #content hr { margin-bottom: 15px; font-size:14px; }That should do the trick i think.