lolopel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: redirecting to wordpress post with paramsResolved
Forum: Fixing WordPress
In reply to: redirecting to wordpress post with params@catacaustic the SMS service forwarding the URL is redirecting when reformatting the URL and the parameter gets lost during the conversion. I just skipped their url formatting, add the parameter and it works fine, plus I think the target client can trust some more if they can actually see the domain. Thanks to everyone.
Forum: Fixing WordPress
In reply to: redirecting to wordpress post with paramsThe URL as is in the SMS received by the customer is something like http://xxxxx?b=http://xxxxxx/dUyia, the ?b= parameter is another URL. When clicking the link the url becomes [ redundant link removed ], with no parameters at all.
- This reply was modified 7 years, 5 months ago by Jan Dembowski.
Forum: Fixing WordPress
In reply to: SMS Link Image preview – PostsIt worked. Also this website lets you find out if a (your) app is implementing Open Graph meta tags: https://opengraphcheck.com
Thank you George.
Forum: Themes and Templates
In reply to: Custom menus & templates not loading properly.Ok it was as simple as
<?php wp_nav_menu(array(‘theme_location’=>’primary’)); ?>, instead of “==”. Although Post page’s template still falls back to index.php.Forum: Themes and Templates
In reply to: Change footer colourIn style.min.css there must be a selector like “#footer, #wrapper-footer”, with background set to #1C1E20. Change that value to #81D339.
If you are using a custom css file then you are going to have to be more specific than “#footer, #wrapper-footer” to overwrite the previous background style in style.min.css, something like ‘.clearfix #wrapper-footer’ I guess. If you want to change the copyright area too then add a new selector such as ‘.clearfix #wrapper-footer .block-bottom-padding’.
- This reply was modified 9 years, 9 months ago by lolopel. Reason: wrong prefix on id