lermit4
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Discography] List and songsHi,
thank you for your feedback.
There are two corrections to be made in the file SiDi_Shortcodes.php.
Replace line 42$show_song = (bool) $atts['show_all'];with
$show_all = (bool) $atts['show_all'];Replace line 277
if($query->max_num_pages >1 and $atts['show_all']){with
if($query->max_num_pages >1 and $show_all){sorry, I haven’t set up a github for this project
Forum: Plugins
In reply to: [Simple Discography] Clicking on Album Art, doesn't bring up the songs?1 : – First, try to regenerate the permalinks in Permalink Settings
– If your problem is not resolved, editing simple-discography/SiDi_content.php and modify the following lineadd_filter( 'the_content', 'sidi_the_content_filter', 20 );by
add_filter( 'the_content', 'sidi_the_content_filter', 1 );– If your problem is not resolved, Editing simple-discography/SiDi_Posts.php and add this :
global $typenow, $post; if( $typenow == PORT_TYPE ) { set_post_format($post->id, 'standard' ); }after line :
function sidi_save_post() {2 : it is due to your theme you use.
add this to your css is your problem will be solved.#content h2.sidi-album-title { margin: 0; }Forum: Plugins
In reply to: [Simple Discography] Clicking on Album Art, doesn't bring up the songs?Hello,
Is it possible to send the address where the action happens?
lermmit
Forum: Plugins
In reply to: [Simple Discography] Some questions and suggestions6. Je pense que ce code donnera une présentation plus propre.
– Adds br to lower the title below of album cover .
– Conversely the first li strong as below<div class="sidi-descip"><p>Finally, we released our first album, Dungeon Masters, in 2012. We had some serious problems finding a label and a studio at first, but finally decided to record it at Toxomusic, known for its work on the Witching Hour and Cruel Force albums, and release it via Dying Victims Productions who always gave us 100% support.</p> <br><br><br><br><h2>Dungeon Masters</h2> <ol> <li><strong>Intro</strong></li> <p><strong></strong><em>The intro is heavily inspired by the intro of a demo version of the pc game Dungeon Master. Narrated by Volker \Iron lung\” Frerich, it sets the mood for the album that follows. Nice.</em><br> <strong> </strong></p><li><strong>Dungeon Master</strong></li><strong> </strong><p><strong></strong><em>If you want, the title track of the album. A heavy speeder in the vein of 80’s German Speed Metal bands. It further explores the narrative that is set in the intro.</em><br> <strong>...Forum: Plugins
In reply to: [Simple Discography] Some questions and suggestionsHello Antimatzist,
I apologize for my late reply but his last time I was busy with another project.
1. Excuse me, I do not know what you mean to me
2. – id is just useful to force the display of an album track.
– At present, there is no category management for albums and thus no way to filter based on category3. you must have something that changes the behavior of the function get_the_excerpt or excerpt_more
4. – no it is not aligned right. the couvertur has a margin of 20px around it
– in your case, you’ve got places this code in your css#sidi_dw-2 .sidi-album.list-style-none { margin: 20px 0; }5. well noted
6. it seems that you solved this problem!
7. to be test
8. everything is possible, but it’s too specific. the plugin should remain generic and very simple to use.
Thank you for your feedback.
FYI, I will publish soon a new version with a fix and improvement.regards
Forum: Plugins
In reply to: [Simple Discography] Formatting & Links in Edit AlbumI confirm that this improvement will be present in the new version
Forum: Plugins
In reply to: [Simple Discography] Wrong image size for coveryou have the same problem when you select a picture already present in your Media library and when you download an image?
Forum: Plugins
In reply to: [Simple Discography] Error Loading Full Album DetailsIs it possible to access the page with the list of albums for that I can see the problem?
kind regards
Forum: Plugins
In reply to: [Simple Discography] Formatting & Links in Edit AlbumOk, I’ll see if I can do for the next version.
Forum: Plugins
In reply to: [Simple Discography] Wrong image size for coverWhat are the paramettre you use for Shortcode “Sidi-discography” in your page?
Have you tested this configuration?
[sidi-discography display=”thumbnail” cover_width=150 cover_height=150]Forum: Plugins
In reply to: [Simple Discography] Error Loading Full Album DetailsHi Kate,
I think your problem is your permalink.
Go to the section “Settings” -> Permalinks and change the configuration.
Then did a test if its working properly.
If it works, try again with your initial configuration.Thank you for keeping us informed of the evolution of your problem.
Kind regards,
LermitForum: Plugins
In reply to: [Simple Discography] Formatting & Links in Edit AlbumHi Kate,
I apologize for my late reply but his last time I was busy with another project.
Excuse me, but I do not see where occurs your problem.
Can you tell me more or send me a screenshot if your problem is not solved?Kind regards,
LermitForum: Plugins
In reply to: [Simple Discography] Wrong image size for coverHi Brian,
I apologize for my late reply but his last time I was busy with another project.
I think your problem is your wordpress configuration.Have you solved your problem now?
If so, can you tell us about your solution?kind regards,
LermitHi John,
First of all, thank you for your contribution.
j’ai effectué la correction que tu m’avais signalé. tu la trouveras dans la versions 1.2.4 .Regards,
SébastienForum: Plugins
In reply to: [Simple Discography] Album cover does not displayHi,
you can solve your problem by replacing this code on single page.
– Go to Plugins -> editor,
– Select “Simple Discography” in the dropbox
– Click on the file “single-discography / SiDi_Shortcodes.php”
– Replace this line:$return_string .='<div class="sidi-cover"><img src="'.(empty($cover['url'])?plugins_url( 'includes/images/no-cover.png' , __FILE__ ):$cover['url']).'" ></div>';width
$cover_size = array(150,150); $return_string .='<div class="sidi-cover">'.sidi_get_cover_image(empty($cover['id'])?0:$cover['id'], $cover_size, array('alt'=>__('Cover : ','sidi').get_the_title())).'</div>';regards
Lermit