David Beja
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Same Domain – New Server Export & Import Danger?Why don’t you just copy the entire folder and database and put on the new server, and then you just need to search & replace the old domain with the new domain on the new server?
Forum: Fixing WordPress
In reply to: Mobile view and make finger respons less responsiveDo you have a link of that?
Thanks
Forum: Fixing WordPress
In reply to: Help Spacing the Home Page MenusThe problem is that you have too many menu items on each menu for this layout?
What if you just use one menu using the full width of the container and center the options?Forum: Developing with WordPress
In reply to: Navigate Categories with Prev NextIs this what you want?
How to do pagination on category pageForum: Themes and Templates
In reply to: Removing 'add to cart' and quantity from single product page.Great! Don’t forget to change the topic to resolved.
Thanks
Forum: Themes and Templates
In reply to: Removing 'add to cart' and quantity from single product page.Ok, there was an extra space:
.postid-360.single-product #content .single_add_to_cart_button { display: block; }
postid-360 and single-product classes are on the same level (body).
Forum: Themes and Templates
In reply to: Removing 'add to cart' and quantity from single product page.The last code I wrote. Doesn’t work?
Do you have that modification now online?Forum: Themes and Templates
In reply to: Removing 'add to cart' and quantity from single product page.But did you have that activated now?
Probably a cache problem…
Can’t replicate that problem, I see the min-height: 40px everywhere.
Did you clear the cache of the browser?Forum: Themes and Templates
In reply to: Removing 'add to cart' and quantity from single product page.You could use the .postid-360 class that is specific for that page of selection and re-enable the button:
.postid-360 .single-product #content .single_add_to_cart_button { display: block; }
Forum: Themes and Templates
In reply to: Removing 'add to cart' and quantity from single product page.For the quantity I would add this:
.single-product #content .quantity { display: none; }
For the ‘add to cart’ button is already hidden…
Forum: Themes and Templates
In reply to: Removing 'add to cart' and quantity from single product page.Do you have a link?
You could always hide it with css.Hi,
I see the same height in Chrome, Firefox and IE.
What’s the version of IE you’re testing and what height do you see?Forum: Themes and Templates
In reply to: [Theme: Resonar] Featured image not being picked up by FacebookSometimes Facebook doesn’t scrap well the urls…
You can check how Facebook is scrapping your urls here:
Facebook DebugAnd when you test the urls here, Facebook will also fetch new scrape information, so sometimes you can fix these kind of problems just by testing the url here.
I’ve looked at your site, and the OG meta tags for the images inside the posts look ok.
Forum: Themes and Templates
In reply to: page will not reconize CSS style sheetAfter enabling the Net tab you must refresh the page so that you can see all the resources that are being loaded.
At least, the page itself should show up on that list.You can do one more thing, right click any where on the site and View Source. Check the url that was generated for link tag of the style.css file. Also check if you can open that url directly in the browser.