Jos.SnchZ
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link won;t show in my postHi there,
The link is being generated properly. The missing thing is the Title here. In your blog’s 1 post actually i see this:
<a href="www.rvcanada.raivensnest.net/" title="Camp 2013" target="_blank"></a>
it’d be
<a href="www.rvcanada.raivensnest.net/" title="Camp 2013" target="_blank">Try me</a>
Forum: Fixing WordPress
In reply to: Body is not centred on Twenty Eleven child themeHi again,
i’ve burned my eyes but got the error :D.
Replace
.one-column { max-width: 960px; margin: 0 auto; } }
to
.one-column { max-width: 960px; margin: 0 auto; }
Forum: Hacks
In reply to: Custom Post Type, the single-.php problemHey Chris,
thanks for your answer. I had doubts myself about it.
Regards !
Forum: Fixing WordPress
In reply to: Better WP Security SSL option locked me outHey,
Try to replace these lines<?php * The base configurations of the WordPress.
with these ones
<?php /** * The base configurations of the WordPress.
For the next time u post some code, just dont output all ur file and change right now the information of your database ,user and password since you expossed them here.
Regards
Forum: Fixing WordPress
In reply to: Body is not centred on Twenty Eleven child themeHi there,
in your style.css change this :
.one-column { align: center; max-width: 960px; }
to this
.one-column { max-width: 960px; margin: 0 auto; }
Forum: Fixing WordPress
In reply to: Better WP Security SSL option locked me outHi there,
The error u’re showing us means there’s some error in the coding of “wp-config.php” file.
What did you exactly make before the site crashed down? I guess you went though WP Security options but i’d be nice to know what did u exactly change.
Regards
Forum: Fixing WordPress
In reply to: Some menus (such as Posts) are 'display:none?'Hi there,
glad to hear that u started with WordPress !Have u tried visiting your site to check if the posts are loading correctly?
U could also edit those posts directly in the admin area like this:https://www.yoursite.com/wp-admin/post.php?post=240&action=edit https://www.yoursite.com/wp-admin/post.php?post=238&action=edit https://www.yoursite.com/wp-admin/post.php?post=235&action=edit
Hope that helps,
RegardsForum: Localhost Installs
In reply to: Can access admin, but not pagesHello,
Before setting up ur dynamic domain, u should try ur web at https://localhost/your_wordpress_folder
That’s just to check if the web file’s and entries are fine. U should check .htaccess file too, to see if there’s any redirect or rules that are not applying in ur local server.
Regards !
Forum: Themes and Templates
In reply to: Featured Images not fitting whole spaceHi,
For what I see, the images attached to your posts are in medium size. Try larger image sizes.
Regards
Forum: Fixing WordPress
In reply to: media library doesn't workAlmost all of the sliders use the Media Library so .. yes, the problem probably will be related to that.
Probably is a jQuery conflict. Maybe jQuery is duplicated or various versions are being loaded.
Try duplicating your site into another one. Update all your plugins and check if the problem still occurs.
If it’s still going on ,u may have to check 1 by 1 which plugin is making the malfunction.
Or you could check the console in Firefox or Chrome to see the error. You’ll probably have one.
Hope that helps,
RegardsForum: Fixing WordPress
In reply to: How to make the post a slideshow like this one?Hi,
U have NextGen Gallery for example, I think it does what u need.
Forum: Plugins
In reply to: [Breadcrumb NavXT] CSS problemsWell .. I think it’s not the proper way but u could try doing it like this :
<div class="breadcrumb" style="background: #FFFF19; display: block; float: left; clear: both; height: auto; width: auto; min-width: 0; padding: .5em 1em; overflow: hidden"> <?php (function_exists('bcn_display') ? bcn_display() : false ); ?> </div>
Forum: Plugins
In reply to: [Breadcrumb NavXT] CSS problemsHey, i’ve tried the plugin in a clean WordPress install and it’s working fine like u mentioned it. Try setting the element’s display to block , maybe there’s a conflict with another css rule.
Anyway, is your code inside the <body> or <header> tags?
Regards
Forum: Fixing WordPress
In reply to: Loop child pages displaying different content depending on depthHi,
the get_post_meta function takes arguments to be loaded.
I’t be something like
<?php $my_meta = get_post_meta( $post->ID, 'my_meta_key', true); print_r( $my_meta ); ?>
U have all the information about it here :
https://codex.www.ads-software.com/Function_Reference/get_post_metaForum: Plugins
In reply to: [Breadcrumb NavXT] CSS problemsHi,
https://mtekk.us/code/breadcrumb-navxt/breadcrumb-navxt-doc/3/#css_styleIt seems the applied class is “breadcrumbs”.
Regards !