kathyforer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add WhatsApp entire feedHello, Thank you, much appreciated all around.
I tried WhatsApp Web and was able to print a 8-1/2″ x 290″ long PDF scroll of the conversation. That should do for now.
Forum: Plugins
In reply to: [Geo Mashup] https markerstemporarily broken!
Forum: Plugins
In reply to: [Geo Mashup] https markersIt seems to be hard-coding in cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.js
o.Path.SVG_NS="http://www.w3.org/2000/svg"I tried changing render-map.php line 298 to GeoMashup::register_script, referencing a local a copy of leaflet.js but it still had mixed content, i.e.:
An image with an insecure url of "http://www.patricksymmes.com/wp-content/plugins/geo-mashup/images/mm_36_orange.png" was loaded on line: 37 of https://www.patricksymmes.com/?geo_mashup_content=render-map&map_data_key=e4f31ab4e42a349bf8ab22227e78dd53&map_content=global&map_type=G_NORMAL_MAP&width=100%&add_map_control=true&name=global_map_temp&object_id=1479.The CDN version of leaflet.js 1.6.0 didn’t work either and 1.6.0 CSS broke the markers.
- This reply was modified 6 years, 4 months ago by kathyforer.
Forum: Plugins
In reply to: [Geo Mashup] https markersoops, thank you, I went to dinner and left the functions file with a typo.
I found whynopadlock. This is what’s going on with the markers:
https://www.whynopadlock.com/results/6b35ea45-043d-4279-a82a-b4bb1de09e25- This reply was modified 6 years, 4 months ago by kathyforer.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] HTML (e.g. strong) in image captionsHow would that work? Thank you.
Forum: Plugins
In reply to: [WP eCommerce] spam users in wp_users after wpsc upgradeThanks pheriche, the site is working again. If I did it again, I’d add code so it batch deleted records as it hung the database for a long time.
I will disable the bookstore until the authors fix this plugin properly.
Forum: Plugins
In reply to: [WP eCommerce] spam users in wp_users after wpsc upgradeHaaalp!
I can copy/paste mysql commands but I’m not sure what I need to do to scrub this mess. I’ve tried some plugins but can’t seem to run anything much from the Admin Panel.
I’m also thinking a new installation without importing users might take care of the problem.
Thanks!!
Forum: Plugins
In reply to: [WP eCommerce] spam users in wp_users after wpsc upgradeCan someone please summarize what must be done to fix a bloated database and continue using this plugin? Or fix it and use something else?
I visited on a friend’s site and the entire mySQL database is 3.31 GB. On examination there are 21,360,070 user_meta entries and 1,277,439 users. Options seems bloated at 287,461 records, but that could be something else.
— Kathy
Forum: Plugins
In reply to: [Posts Per Category] tags in titlesIndeed! I’m sorry about that. Cat is not Category, so close, yet so far!
Forum: Plugins
In reply to: [Posts Per Category] tags in titlesIt wasn’t working on a category description using the [ppc] shortcode.
I have a function file that allows various tags in excerpts.
I’ve since stopped using the plugin in category descriptions so can’t give an example.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Edit Table ContentThat works brilliantly thank you!
Looking forward to a version that will allow targeting by ID.
Best,
KathyForum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Edit Table ContentThank you!
Three or my columns have minimal content, should be minimum 60px and 150px, the next two should be 200 and 400px. I tried the code below but it didn’t work. How can I pick out an edit column for a style?
#edit-form-head th.head:first-child {
min-width: 60px;
}
#edit-form-head th.head:nth-child(-n+5) {
min-width: 150px;
}
#edit-form-head th.head:last-child {
min-width: 30px;
}Also, how would I customize the extension to different table ids?
Forum: Fixing WordPress
In reply to: What is the permalink to a post's featured image?keesiemeijer, it’s the first code I was looking for, displaying thumbnails from posts in another post’s content. It works just right. The second shortcode may also prove useful.
Thank you!!! Kathy
Forum: Fixing WordPress
In reply to: What is the permalink to a post's featured image?Thank you, that makes sense, but I’m doing this entirely outside the loop. How would I apply that?
There’s a page that’s something like:
This is the story of my travels. Out first car trip place was to <a href="/cheyenne">Cheyenne, Wyoming</a>. Our next trip was <a href="/venezuela">Venezuela</a>. We are looking forward to returning to <a href="/india">India</a> for the tenth time.The text is a lot more complicated than that, and much longer, but basically I’d like to call the featured image outside of a loop, so it would be part of this text.
Is there any way to use the code you have in the body of a page, perhaps with php enabled for posts? Then the above would be something like:
This is the story of my travels. Out first car trip place was to <a href="<?php $post_thumbnail_id = get_post_thumbnail_id( $post->107); if($post_thumbnail_id) { the_attachment_link( $post_thumbnail_id ); } ?>">Cheyenne, Wyoming</a>. Our next trip was <a href="<?php $post_thumbnail_id = get_post_thumbnail_id( $post->112); if($post_thumbnail_id) { the_attachment_link( $post_thumbnail_id ); } ?>">Venezuela</a>. We are looking forward to returning to <a href="<?php $post_thumbnail_id = get_post_thumbnail_id( $post->165); if($post_thumbnail_id) { the_attachment_link( $post_thumbnail_id ); } ?>">India</a> for the tenth time.I’m using a child theme with thematic and can add a function to it, but I can’t seem to get a handle on what this would be.
Forum: Plugins
In reply to: [Galleria Galleria] [Plugin: Galleria Galleria] default to thumbnail viewI was able to get this to work by adding
Galleria.ready(function() { this.$('thumblink').click();to the galleria-galleria.php file.