gransar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Stretched imagesgenerally you should check in the documentation what sizes are required for best viewing. Sometimes themes crop images and other times they stretch them. It’s best you do the editing yourself.
Forum: Fixing WordPress
In reply to: no wp admin page. admin logon goes to websitetry to track what you did last time.
also clear cache or try from a different browser.Forum: Fixing WordPress
In reply to: twenty-eleven's featured image stopped workingthank you guys. It seems if the width is bellow 1000px it won’t work. 1200px and everything is in order.
Forum: Themes and Templates
In reply to: adding additional css files to a pagebasically the answer is not to use relative links…
Here is a sample link:
<script type=”text/javascript” src=”https://gransar.net/wp-content/themes/twentyeleven-child/js/imageMenu.js”></script>notice that src attribute has a full html link.
Forum: Themes and Templates
In reply to: adding additional css files to a pageoh ok. I created a new functions.php in the child theme. It only has the following:
<?php
//deano loading css for portfolio
function my_external_links() {
/* Register our new css and js files */
wp_register_style( ‘myImageMenu’, ‘https://www.gransar.net/wp-content/themes/twentyeleven-child/imageMenu.css’ );
}
?>and in the beginning of my customPage (not the header.php) where there are other css files being call I added the call function:
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
<script type=”text/javascript” src=”js/mootools.js”></script>
<script type=”text/javascript” src=”js/imageMenu.js”></script>
<?php
wp_enqueue_style( ‘myImageMenu’);
?>again I would like to just hardcode the value. It doesn’t make sense to write a function that’s longer than a hardcoded value. I think the files are not being read either way.
Forum: Themes and Templates
In reply to: adding additional css files to a pageThank you paulwp for a very comprehensive list. I skipped first and third links since I already operate from a child theme and this is a page. Before trying out functions again I like to add that it would be best for me to just to hard-code this values. It seems no matter what I give wordpress it chooses to ignore them. Here is what I have so far:
<link rel="profile" href="https://gmpg.org/xfn/11" /> <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <link rel="stylesheet" type="text/css" media="all" href="js/imageMenu.css" /> <script type="text/javascript" src="js/mootools.js"></script> <script type="text/javascript" src="js/imageMenu.js"></script> <?php wp_register_style( 'myImageMenu', 'https://www.gransar.net/wp-content/themes/twentyeleven-child/' ); wp_enqueue_style( 'myImageMenu'); ?>
Forum: Plugins
In reply to: [Social] [Plugin: Social] It doesn't show anymore twitter replies as commentsOh.. I had another plugin enabled… if you like that feature you can download
https://crowdfavorite.com/wordpress/plugins/twitter-tools/
I had no conflicts between the two plugins.Forum: Plugins
In reply to: [Social] [Plugin: Social] It doesn't show anymore twitter replies as commentsYeah … I like the plugin to to post to facebook and twitter only and not retrieve posts and tweets or their comments.
Forum: Plugins
In reply to: [Social] [Plugin: Social] It doesn't show anymore twitter replies as commentsactually my problem is that it shows twitter replies as comment. How can this be disabled?
these are my sites:
https://www.gransar.net
https://www.facebook.com/gransaractually I didn’t forget to copy/past. Basically wordpress converts the texts so its somewhat incompatible with Facebook. There is “& # 8 2 3 0 ;” for “…” and ” & # 8 2 1 7 ;” for ” ‘ ”
a perfect title for emails & # 8 2 3 0; Why is there a topic anyways? It & # 8 2 1 7 ; not an essay.
sorry for the wrong copy and paste. This is what I get in Facebook:
a perfect title for emails… Why is there a topic anyways? It’s not an essay.hahaha!
Forum: Plugins
In reply to: Best WordPress Security Strategy?very nice thread.
I was wondering if anyone knows other plugins that are compatible with
Bulletproof Security Plugin. It seems the more the merrier…