eschnack
Forum Replies Created
-
Forum: Plugins
In reply to: [Musopress Discography] Thumbnail sizeHi, this is happening because of a conflict with your theme’s css. Try adding the following to your style.css file (or custom CSS if your theme has that option)
#muso-discog-grid .album-grid .wp-post-image {width:140px;}If that still doesn’t work, try this:
#muso-discog-grid .album-grid .wp-post-image {width:140px !important;}Forum: Plugins
In reply to: [VoucherPress] Warning on activationIt seems to be caused by the voucherpress_check_install(); function
Ok, I commented out both wp_new_user_notification functions in the plugin, and changed the call in login_check.php to:
wp_new_user_notification( $user_id, null, 'both' );And now it works fine.
Forum: Plugins
In reply to: [Contact Form 7] Javascript not working in Chrome when logged outDo you mean console.trace()? I ran it in Chrome dev tools, and I get the following, which I don’t really know what to do with…
console.trace()(anonymous function) @ VM260:2 InjectedScript._evaluateOn @ VM129:904 InjectedScript._evaluateAndWrap @ VM129:837 InjectedScript.evaluate @ VM129:693 undefinedFirebug isn’t much help since the form works fine in Firefox.
Forum: Plugins
In reply to: [Contact Form 7] Javascript not working in Chrome when logged outHi, thanks but as I stated above, I already disabled all other plugins. This was a fresh install, and I was using the Twenty Fifteen theme. I also tried changing to the other default themes, but the problem persists.
This started happening to me yesterday after updating to WordPress 3.8.2 and WordPress SEO 1.5.2.6. All my setting disappeared after updating, and today they disappeared again for no apparent reason.
Found a thread from a month ago with the same problem: http://ww.wp.xz.cn/support/topic/home-settings-lost-after-update
Forum: Plugins
In reply to: [Musopress Discography] Any new version to be available soon!Those are great suggestions, i’ll look into it. I have an update that’s like 80% finished. Right now I’m finishing my new album so I’m focused on that. But once I finish it, which should be in about month, I’ll get that update done and devote more time to this plugin.
Forum: Plugins
In reply to: [Musopress Discography] How to Enable Artist Taxonomy?Sorry, I thought I had answered this, it seems the site is editing out the code and replacing it with “*”
You can find the proper instructions over here: http://musopress.ernestoschnack.com/discography-plugin/
Forum: Plugins
In reply to: [Musopress Discography] Discography Menu Button doesn't show in administratorCool, glad it worked out.
Forum: Plugins
In reply to: [Musopress Discography] Discography Menu Button doesn't show in administratorOk, it’s Concertpress that’s causing it. This happens when plugins or themes try to take a specific place on the menu, it replaces whatever is supposed to be there originally.
Go to line 185 on concertpress.php where it says:
$pages[] = add_menu_page( 'ConcertPress Settings Page', 'ConcertPress', 'edit_posts', __FILE__, array( &$this, 'echoSettingsPage' ), '', 26 );and remove the 26 and the comma before it:
$pages[] = add_menu_page( 'ConcertPress Settings Page', 'ConcertPress', 'edit_posts', __FILE__, array( &$this, 'echoSettingsPage' ), '' );or if you want it to stay in the same area, you can try adding a decimal point to it to see if that fixes it:
$pages[] = add_menu_page( 'ConcertPress Settings Page', 'ConcertPress', 'edit_posts', __FILE__, array( &$this, 'echoSettingsPage' ), '', 26.5 );If that works you’ll probably want to let the plugin author know to avoid conflicts with this or any other plugin when it gets updated.
Hope that helps.
Forum: Plugins
In reply to: [Musopress Discography] Discography Menu Button doesn't show in administratorWhich button exactly is disappearing?
Forum: Plugins
In reply to: [Musopress Discography] Artist name on single album page?Hi, can you show me the code that’s in the page.php file of your theme.
Forum: Plugins
In reply to: [Musopress Discography] Duplicate Album ThumbnailsCan you send me your theme in a zip file? My email is eschnack at gmail dot com.
Forum: Plugins
In reply to: [Musopress Discography] Duplicate Album ThumbnailsOk, I’m doing this off the top of my head without any testing, but I think it should work.
Make a copy of page.php and rename it single-muso-album.php
Change this line:
<?php get_template_part( 'content', get_post_format() ); ?>
to
<?php get_template_part( 'content', 'muso-album' ); ?>Now make a copy of content.php and rename it content-muso-album.php, and delete everything from
<div class=”post-thumbnail”>
to
</div> <!– end .post-thumbnail –>
Let me know if it works.
Forum: Plugins
In reply to: [Musopress Discography] Duplicate Album ThumbnailsOk, it’s getting the rest of the code from another file. Do you have a file in your theme called content-page.php or something similar? If so can you post the code from that as well?