drizzle
Forum Replies Created
-
Thanks, although the problem still exists in my front page widget slideshow:
https://www.wyofootball.com/but is working fine here:
https://www.wyofootball.com/news/Regards…
Tom,
Thanks, that seems to have fixed the problem.
Will the fix in the development version get overwritten by the next plugin update?
Regards…
Added some content to the front page and and now the front page slide show is working in Firefox. Sometimes it works in Firefox, sometimes it doesn’t (both within the front page widget and within the posts).
After I added the content, I deleted the cache in WP Super Cache, so don’t know if there is any connection there.
Don’t seem to have this on again/off again issue with the other browsers.
Many thanks dznr418 – you saved me from wasting countless hours and/or dumping Meta Slider….
Feedback using 2.0.7 and Responsive Theme: mobile menu still gone using iPhone/Safari. Also, a Youtube video on my home page is not responsive now (was before using 2.0.0). Rolled back to 1.9.13. Regards…..
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TablePress missing from menuHi Tobias,
It was a permission issue. To solve the problem, I reinstalled a previously used plugin (User Role Editor), then added back the necessary TablePress permissions (listed here: https://www.ads-software.com/support/topic/tablepress-admin-capabilites-problems?replies=6).
Why the plugin caused this problem, I don’t know. I’m hoping it hasn’t effected the rest of my site.
Thanks for TablePress. It helps me provide a website for the local high school’s football (American) team. I use it for the schedules and rosters.
Best…
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] TablePress missing from menuNever mind. Figured it out.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Center tableThanks Tobias
Tom,
Am able to roughly match widths by targeting the caption wrap. Must have some other css causing the problem. Am unable to go public with these images until the summer (was working on it while “under construction”), so will recontact you about this at that time. If you can identify the conflicting css without the slider installed, here’s the site: wyofootball.com (the slider will be used in the sidebar)
Thanks,
Scott
Forum: Plugins
In reply to: [Facebook] no option to not publish post to facebook page?jebus, I agree with you. Don’t want every post published to my Facebook page. Try Facebook Page Publish.
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] Viewing tables within tabsThanks. I added the echo’s but still have the problem with the tabs appearing below the gallery. It may be an issue with the gallery shortcode.
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] Viewing tables within tabsTobias,
Here’s the page I’m working on:
https://wyofootball.com/history/past-teams/2001-spartans/If I add “echo” before the Gallery shortcode, the images appear but above the tabs.
The paragraph “Click on photo to enlarge” always appears above the tabs, even though I want it to appear under the tabs only when “Gallery” is selected.
Thanks
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] Viewing tables within tabsThanks. I’ve got the tables showing fine, but my gallery isn’t visible and the paragraph appears above the tabs and under the title.
<?php get_header(); the_post(); ?> <h1 class="year"><?php the_title(); ?></h1> <?php $roster_table_id = get_post_meta( $post->ID, 'roster_id', true ); do_shortcode( "[tab name='Roster'][table id={$roster_table_id} /] [/tab]" ); $schedule_table_id = get_post_meta( $post->ID, 'schedule_id', true ); do_shortcode( "[tab name='Schedule'][table id={$schedule_table_id} /][/tab]" ); do_shortcode( "[tab name='Gallery']" ); ?> <p>Click on photo to enlarge</p> <?php $team_gallery_id = get_post_meta( $post->ID, 'gallery_id', true ); do_shortcode( "[nggallery id={$team_gallery_id} template=caption]" ); do_shortcode( "[/tab]" ); echo do_shortcode("[end_tabset]"); ?> <?php get_footer(); ?>
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] Viewing tables within tabsWhen using this approach to inserting tables into the tabs, can html also be used to insert additional content before and after the table shortcode? I keep getting error messages when I try that.
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] PHP usageWhere do I put:
global $post;
Thanks.