ebenezer357
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Paid membership for groupsnever mind, as usual these people take months to reply. BYE!
Forum: Plugins
In reply to: [Sliding Widgets] Causes error after activationsame thing here. it gives me this error: Warning: extract() expects parameter 1 to be array, boolean given in plugins/sliding-widgets/sliding-widgets.php on line 23
Any body has found the solution please?
Forum: Plugins
In reply to: [Slideshow] [Plugin: Slideshow] !slideshow_deploy! displayingHi, i’m having the same issue and switched from on to off and back again the AVOID CONTENT FILTER option but doesn’t do anything. It shows a !slideshow_deploy! on the home page instead of the slider. Please help!
Forum: Fixing WordPress
In reply to: Remove Links From Homepage Slider ImagesI have the same issue and this worked:
.slider-image {
pointer-events: none;
cursor: none;
}However, what about if i want to do it for specific slides only? The issue is that when i type this css in the custom css section it applies it for everything and i only need it for some of the posts.
Forum: Themes and Templates
In reply to: [Clean Retina] css inside @medianever mind i did it in the custom css area of the theme and it’s now done. Thanks ??
Forum: Themes and Templates
In reply to: Tables issue in chromeActually, i found out that my problem is because im calling this: <?php get_sidebar(); ?>
Does anybody know why this error happens when i try to get the sidebar in my template?
Forum: Themes and Templates
In reply to: Tables issue in chromeThanks Andrew Nevins for replying, sorry for that.
This is the link:
https://bibliadeldiscipulo.net/catalogo/daily-walk-bible-special-leatheralmond/Im using a template i have made to use here. This is what i have in the template:
I put in black the background of the title just to noticed the cells in the table. It’s working perfectly in firefox and all the others, but in Chrome it’s putting a Empty block there!<?php /** * Displays the single section of the theme. * * @package Theme Horse * @subpackage Clean_Retina * @since Clean Retina 1.0 */ ?> <?php get_header(); ?> <?php /** * cleanretina_before_main_container hook */ do_action( 'cleanretina_before_main_container' ); ?> <table width="100%" height="100%" border="0"> <tr bgcolor="#000000" valign="top" height="0px" padding-bottom: 50px> <td height="76" colspan="2" align="left" valign="top"></br><h6><?php the_title(); ?></h6></br></td> <td width="330px" height="30px" rowspan="2" align="left" valign="top" bgcolor="#d7d7d7"><?php get_sidebar(); ?></td> </tr> <tr> <td width="160px" height="30" align="left" valign="top"> <?php if (have_posts()) : while (have_posts()) : the_post();?> <?php the_content(); ?> <?php endwhile; endif; ?> </td> <td width="583" align="left" valign="top"> <div style="width:95%; float:center; vertical-align:top"> <!-- Description --> <?php if(qtrans_getLanguage()=='en') { more_fields('english_book_description'); } else { more_fields('spanish_book_description'); } ?> </br> </br> <!-- Category --> <?php if(qtrans_getLanguage()=='en') : ?> <b>Category:</b> <?php more_fields('Category') ?> <?php else : ?> <b>Categoria:</b> <?php more_fields('Category') ?> <?php endif; ?> </br> <!-- SERIE --> <!-- serie getter --> <?php ob_start(); more_fields('serie'); $serie = ob_get_contents(); ob_end_clean(); ?> <?php if($serie == '--') : ?> <b></b> <!-- Avivamiento Espiritual --> <?php elseif($serie == 'Avivamiento espiritual' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/spiritual-revival-series/">Spiritual Revival</a> </br> <?php elseif($serie == 'Avivamiento espiritual' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/spiritual-revival-series/">Avivamiento espiritual</a> </br> <!-- Biblia en un minuto --> <?php elseif($serie == 'Biblia en un minuto' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/one-minute-bible/">One Minute Bible</a> </br> <?php elseif($serie == 'Biblia en un minuto' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/one-minute-bible/">Biblia en un minuto</a> </br> <!-- Biblioteca Pastoral --> <?php elseif($serie == 'Biblioteca Pastoral' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/pastoral-library/">Pastoral Library</a> </br> <?php elseif($serie == 'Biblioteca Pastoral' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/pastoral-library/">Biblioteca Pastoral</a> </br> <!-- Bolsillo --> <?php elseif($serie == 'Bolsillo' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/pocket/">Pocket</a> </br> <?php elseif($serie == 'Bolsillo' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/pocket/">Bolsillo</a> </br> <!-- Devocionario --> <?php elseif($serie == 'Devocionarios' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/devotionals/">Devotionals</a> </br> <?php elseif($serie == 'Devocionarios' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/devotionals/">Devocionarios</a> </br> <!-- Dies grados basicos --> <?php elseif($serie == 'Diez grados basicos' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/ten-basic-steps/">Ten Basic Steps</a> </br> <?php elseif($serie == 'Diez grados basicos' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/ten-basic-steps/">Diez grados básicos</a> </br> <!-- El librito de las instrucciones de Dios --> <?php elseif($serie == 'El librito de las instrucciones de Dios' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/gods-little-instruction-book/">God's little instructions Book</a> </br> <?php elseif($serie == 'El librito de las instrucciones de Dios' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/gods-little-instruction-book/">El librito de las instrucciones de Dios</a> </br> <!-- Favorito --> <?php elseif($serie == 'Favorito' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/favorite/">Favorite</a> </br> <?php elseif($serie == 'Favorito' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/favorite/">Favorito</a> </br> <!-- Flet --> <?php elseif($serie == 'Flet' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/flet/">Flet</a> </br> <?php elseif($serie == 'Flet' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/flet/">Flet</a> </br> <!-- Los cinco lenguajes --> <?php elseif($serie == 'Los cinco lenguajes' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/five-love-languages/">Five Love Languages</a> </br> <?php elseif($serie == 'Los cinco lenguajes' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/five-love-languages/">Los cinco languages</a> </br> <!-- Mamá --> <?php elseif($serie == 'Mama' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/mom/">Mom</a> </br> <?php elseif($serie == 'Mama' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/mom/">Mamá</a> </br> <!-- Momentos de Quietud --> <?php elseif($serie == 'Momentos de quietud' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/quiet-times/">Quiet Times</a> </br> <?php elseif($serie == 'Momentos de quietud' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/quiet-times/">Momentos de quietud</a> </br> <!-- Promesas --> <?php elseif($serie == 'Promesas' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/promises/">Promises</a> </br> <?php elseif($serie == 'Promesas' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/promises/">Promesas</a> </br> <!-- Tesoro Devocional --> <?php elseif($serie == 'Tesoro Devocional' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/30-day-devotional-treasury/">30 Day Devotional Treasury</a> </br> <?php elseif($serie == 'Tesoro Devocional' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/30-day-devotional-treasury/">Tesoro Devocional</a> </br> <!-- Socorro --> <?php elseif($serie == 'Socorro' && qtrans_getLanguage()=='en') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/help/">Help!</a> </br> <?php elseif($serie == 'Socorro' && qtrans_getLanguage()=='es') : ?> <b>Serie: </b><a href="https://bibliadeldiscipulo.net/series/help/">Socorro</a> </br> <?php else : ?> <b></b> <?php endif; ?> <!-- ISBN --> <?php if(qtrans_getLanguage()=='en') { echo "<b>ISBN:</b> "; more_fields('isbn'); } else { echo "<b>ISBN:</b> "; more_fields('isbn'); } ?> </br> <!-- Product --> <?php if(qtrans_getLanguage()=='en') { echo "<b>Product:</b> "; more_fields('product'); } else { echo "<b>Producto: </b>"; more_fields('product'); } ?> </br> <!-- Pages --> <?php if(qtrans_getLanguage()=='en') { echo "<b>Pages: </b>"; more_fields('pages'); } else { echo "<b>Páginas:</b> "; more_fields('pages'); } ?> </br> <!-- Medida --> <?php if(qtrans_getLanguage()=='en') { echo "<b>Size:</b> "; more_fields('medida'); } else { echo "<b>Medida:</b> "; more_fields('medida'); } ?> </br> <!-- Cover --> <?php if(qtrans_getLanguage()=='en') { echo "<b>Cover:</b> "; more_fields('cubierta'); } else { echo "<b>Cubierta:</b> "; more_fields('cubierta'); } ?> </br> <!-- Price --> <?php if(qtrans_getLanguage()=='en') { echo "<b>Price: </b>$"; more_fields('book_price'); } else { echo "<b>Precio: </b>$"; more_fields('book_price'); } ?> </div> </td> </tr> </table> <?php /** * cleanretina_after_main_container hook */ do_action( 'cleanretina_after_main_container' ); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Pages giving me an errorhey guys! changing the permalink to default fixes the issue; however i can’t live it in DEFAULT because i many outsource stuff that makes me keep the permalink as POSTA NAME.
Someone please help me out with this! im already frustrated with this thing!! ??
:.(
thanks ??
[Moderator note: Don’t duplicate threads]
Forum: Fixing WordPress
In reply to: Pages giving me an errori just deleted the functions.php from the child theme and the 404 ERROR got away but now it’s showing the HOME PAGE’s content on all of the other pages. I think it’s something with the template maybe???
Forum: Fixing WordPress
In reply to: Pages giving me an errorI had created a child theme last week. I just reActivated the original parent theme and the pages don’t show up the 404 Error anymore but it’s only displaying the content from the home page even though on the src address it’s showing up the correct permalink/link..
Anyone please help me out, i don’t know what’s going on!
Forum: Themes and Templates
In reply to: [Twenty Eleven] margin bellow headerHi WPyogi;
I’m jonathanarzola’s partner. We just created the child theme, we called the style.css file and everything is working great; however we don’t know which class to edit in order to adjust the margin or padding of the content since there is a big white space between the header image and the actual content.Someone please help us!
thanksForum: Plugins
In reply to: [HTML5 jQuery Audio Player] Problems with FirefoxNever mind, i hadn’t put in correctly the .ogg file in the songs. Now it’s fixed, i added the lines to the htaccess file and also converted my mp3 files to ogg and changed the settings on the songs. Thanks!
Forum: Plugins
In reply to: [HTML5 jQuery Audio Player] Problems with FirefoxWell, i added this lines on the htaccess and still doesn’t work on firefox
AddType audio/ogg ogg
AddType audio/ogg oga
AddType video/ogg ogv
AddType video/mp4 m4vI tryed adding them at the end of “EndWordpress” and before it but nothing changed at all! ??
Well, i have actually created a page under each of the authors, so the prefix of the url is the same, i mean: https://www.mysite.com what changes is the /juan or /jose
i hoped there was something like https://www.mysite.com/%autor% or something like this.
Wow alchymyth! You are great!!!!! i can’t believe you actually solved my issue.
After 4 days on this you found my solution. It works perfect.ob_start(); more_fields(‘autor’); $author_field = ob_get_contents(); ob_end_clean();
$autor = ‘<div class=”content”>’ . $author_field . ‘</div>’;works perfect!!!!
I have a last question just in case you can help me out on this area for the last time:I want to add a link to this autor field that i just did. For example:
book 1 has two authors: jose and juan so it’s displaying them using the “output buffering” tip that you just gave me. I want my clients that when they click on juan they are directed to https://www.mysite.com/juan and when they click on jose they are directed to https://www.mysite.com/jose by a link..
I saw once that i could do something like https://www.mysite.com/%autor% or something like this.Is this possible to do? i want to do this because im displaying the authors of these books and i want my clients to also be able to click on the author and see their biography.
Please help me out this last time if you can. If you can’t just tell me and i’ll understand don’t worry.
Thanks a lot in advance!