zel
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Video Lightbox] Vimeo problem when site is in SSL.Yeah, it worked, i wouldn’t post it if didn’t. ??
Forum: Fixing WordPress
In reply to: next_post_link doesnt workOk, bug was because of “Custom post order” plugin. ?? solved now.
Forum: Themes and Templates
In reply to: Child-Theme .css not recognizedSorry, I’ve written it a little confusing. ??
Saying “it stills imports the old .css” I’ve meant, that it doesn’t load .css from my child theme, but the old one, from the parent theme.
When I insert any css after “import” it doesn’t show in my source. It’s still old css, pointing to the catalyst folder.
EDIT:
ok, I managed to get it working.
Just placed
<link rel=”stylesheet” href=”<?php echo get_stylesheet_uri(); ?>” type=”text/css” media=”screen” />
inside my header.php of parent. Seems that wp_head(); of theme had absolute path to css or smth ??
thanks!Forum: Fixing WordPress
In reply to: Change "reset password" mail and make it HTMLIt messes my other plugins, checked it already ;(
Forum: Plugins
In reply to: [Easy Contact Forms] Please Log InHi g2ady
They don’t seem to read these forums. I’ve came across the same problem, because I changed my user admin ID in database.
To make everything working again, just login to your database, find table
wp_easycontactforms_users
edit the first one, with the description “Admin” and change CMSid to the userID which you are using.If you dont know which ID is it, you can check it in the wp_users
hope I helped ??
In case someone needs it, just look in view/gallery.php and lines 42 and 44.
bump ??
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Quiz doesn't finishHello again, sad no one have replied ??
I tried firebug to find the error, and it says, that fault is in wpProQuiz_front.min.js
TypeError: i is undefined
line 21.
b.find(‘.wpProQuiz_question_page, input[name=”tip”]’).show();A.find(“.wpProQuiz_time_limit_expired”).hide();y.last().val(R);C=!1},checkQuestion:function(a,c){a=void 0==a?j:a;a.each(function(){var a,j,g=f(this),k=g.find(“.wpProQuiz_questionList”),i=e.json[k.data(“question_id”)];a=i.type;r.questionStop();if(g.data(“check”))return!0;if(“single”==i.type||”multiple”==i.type)a=”singleMulti”;var n=!0,l=0,m=f.isArray(i.points);({singleMulti:function(){var a=k.find(“.wpProQuiz_questionInput”).attr(“disabled”,As I said in first post, on default theme plugin works. On my – not. Could someone please take a look?
https://www.inakademia.pl/800-2/
It’s here, type login: wpproquiz and pass: quizzer for access ??Forum: Fixing WordPress
In reply to: Blog: Filtering posts on main page by categoryAmado.Miami can you just email me your category.php please?
z3lgadis[attt]gmail.comForum: Fixing WordPress
In reply to: Blog: Filtering posts on main page by categoryI guessed the code showing the blog on mainpage is:
<?php
if ( get_option( MTHEME . ‘_mainpage_type’ )==”default” ) {
include ( TEMPLATEPATH . ‘/includes/mainpage/index-default.php’);
} else {
include ( TEMPLATEPATH . ‘/includes/mainpage/index-bloglist.php’);
}
?>
Well, I’m using index-bloglist.php
So I pasted instead of that code a code from bloglist:
<?php
$args = array (
‘paged’ => $paged
);
query_posts($args);
?>
<div class=”entry-mainpost-title”>inQuest Blog</div>
<?php get_template_part( ‘loop’, ‘blog’ ); ?>I changed the:
<?php get_template_part( ‘loop’, ‘blog’ ); ?>
to
<?php
rewind_posts();
get_template_part( ‘loop’, ‘category’ );
?>
but it still shows all the posts… what’s wrong? ??Forum: Fixing WordPress
In reply to: Blog: Filtering posts on main page by categoryYeah, but I want all of them show on the main page, without affecting it ?? it seems to work at your page, but in mine I got ‘blank’ page with all posts.
https://www.turboimagehost.com/p/15052420/nah.png.html – its area which i would like to affecthttps://www.inquest.pl – its my site.
https://www.inquest.pl/category/szkolenia – and you can see how the link would look like.Forum: Fixing WordPress
In reply to: Change blog date to exact dateOk, it was my theme problem. I could switch between two forms somewhere in the options.
Thanks Amado.Miami for help! ??Forum: Fixing WordPress
In reply to: Change blog date to exact dateYeah, I checked there the correct format I wanted, but it doesn’t affect mainpage/blog. Maybe I should edit something in templates?
Forum: Fixing WordPress
In reply to: Menu – how to add expandable menu or custom html?Ow, that simple, didn’t thought about it ?? Thanks!
Forum: Fixing WordPress
In reply to: Gallery – can't format "Description"I’ve solved the problem. Reader below the edit ??