abelq
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] New update causes red border underneath form@karanrocks Amazing. You’re psuedo class “:empty” worked! Thanks!
This is happening to me as well. Just in Google chrome (mac). It just loads forever without the pin showing up and cannot be dragged.
https://medifastcalifornia.com/location/northern-california/
Works in FF (mac/pc), Safari(mac), Chrome (pc), IE (pc).
Could it be a Chrome(mac) issue?
Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Meteor slide javascript conflict.Thanks for your advise on swapping the “$” shortcut. Did a quick Google search and found this thread and got my all my jQuery scripts working.
Cheers!
I like the ability to turn this off as well.
For now I just commented-out this line in frontend.php
Around Line#30
From
echo ” (” . $permalink[‘score’] . “)”;To
//echo ” (” . $permalink[‘score’] . “)”;Forum: Plugins
In reply to: [Redirectioner] [Plugin: 404 Redirected] breaks pagination on blog pagesThis might be late but try unchecking “Force current permalinks.” That’s located within the Options Tab under “Automatic Redirects.”
Forum: Plugins
In reply to: [Redirectioner] [Plugin: 404 Redirected] Page split and Automatic RedirectsHey rrolfe,
Love the plugin, very useful for a client of mine who migrated from movable type (different permalink structure) to WP but same domain.
I just want to share how I got the domain.com/name-of-page/page/2/ issue.
It’s true that when “Automatic Redirects” feature is ON, the mentioned url redirects to domain.com/name-of-page/.
But try unchecking “Force current permalinks” and the issue is resolved.
Cheers!
@etellewyn – thanks your solution worked!
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Canonical error on homepageThis also happened to me. Homepage having a canonical of https://domain.com/page/1/ using Intrepidity theme.
Upon inspecting the theme files, I found out that it was using the home.php for it’s homepage template that overrides index.php.
I removed it for now and the canonical of the front page is back to https://domain.com/ again.
Thanks for this plugin. It has my vote as the best SEO plugin coz it does so much more.
Cheers!
AbelForum: Fixing WordPress
In reply to: Limit the number of words in excerpt without plugins…Bechster,
Thanks! I confirm that your code works perfectly. You guys are amazing! Thanks for starting this thread, I just googled what I need and voila :).
Forum: Fixing WordPress
In reply to: Change link text from wp_list_pages, instead of using page titlesI’m also looking for a way to easily change the label of pages that wp_list_pages generates and found this one… https://www.stuffbysarah.net/blog/2008/09/26/new-wordpress-plugin-page-menu-editor/ . I’m going to try it out.
Forum: Fixing WordPress
In reply to: Image issuesI posted a solution on how to increase the max upload file size here > https://www.ads-software.com/support/topic/148260?replies=2
or go directly to this guy’s site explaining it via php.ini or a simple .htaccess edit https://tchan4.com/blog/2008/05/15/wordpress-25-phpini-upload_max_filesize/
I can’t believe it was as simple as that… took me more than an hour googling it..
Forum: Fixing WordPress
In reply to: Increasing Upload LimitsI found an easy fix for this with a single .htaccess file edit. I was able to increase the upload size limit to 20mb… I’m using the “add media” function to upload PDF docs to the media library.
Many thanks to this guy > https://tchan4.com/blog/2008/05/15/wordpress-25-phpini-upload_max_filesize/
Forum: Fixing WordPress
In reply to: How do I display permalinks of files in the Media LibraryIf I need to link directly to an actual file that’s been uploaded in the media library, I go to MANAGE>MEDIA LIBRARY which lists all the uploaded files. I mouse over/right-click the thumbnail of the file (left most column) and “copy link location.”
It will be something like this > https://www.domain.com/wp-content/uploads/2008/09/filename.jpg
I find this very useful for documents (e.g. PDFs) that I want readers to access/download.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Can’t make thumbs after upgrade to 0,98It happened to me as well, then I noticed that it only happens in Firefox and Safari, not in IE7 or IE6. Check to see if this occurs to you as well.
I saw this forum post by Napooleon which he himself found the solution to: https://www.ads-software.com/support/topic/193314
[resolved] [Plugin: NextGEN Gallery] Thumbnails do not appear in Firefox (2 posts)He’s right, I had a css definition of .entry img {max-width:100%;} in my theme stylesheet. Removing it solved the matter.
Forum: Plugins
In reply to: Show Random Posts Custom Fieldsnickhorn and markdw, thanks for the “rand” tip. It’s exactly what my client is asking me to do. I needed to randomly display the image posts of a particular category. Image posts and where they will link are defined using custom fields.
Let me share to everyone as well the exact code I used. Thanks!
<?php $recent = new WP_Query("cat=34&showposts=3&orderby=rand"); while($recent->have_posts()) : $recent->the_post();?> <div class="ad_box"> <a href="<?php $values = get_post_custom_values("bigad link"); echo $values[0]; ?>" rel="bookmark"><img src="<?php bloginfo('stylesheet_directory'); ?>/bigads/<?php $values = get_post_custom_values("bigad image"); echo $values[0]; ?>" alt="" /></a> </div>