Home User profile
tagDiv Member
I'd like to help if i know the answer to your problem :)
CreepyRavioli
tagDiv Member

Ok i wouldn’t care if it wasn’t for the message that pops up when i access the dashboard, i can close it but it comes up again later. This didn’t happen with the previous version of the composer.

Maybe i should report this to visual composer devs instead?

visual composer

CreepyRavioli
tagDiv Member

Try going to plugins, select all and deactivate them.
Try to upload an image again, if it works, activate one by one until you find the one causing the issue.

CreepyRavioli
tagDiv Member

I think you should choose if you want www or no www and then redirect one version to the other.
In your case i think you are using the www version, you should redirect the non-www to the www version.

By adding some simple rule to your .htaccess file you can achieve this. There are many examples out there you can copy https://www.google.com/#q=redirect+non+www+to+www

CreepyRavioli
tagDiv Member

On Appearance -> widgets you have to set 4 facebook fields on the “social counter” widget.
Facebook id: This can be found on your facebook page url after Facebook.com/*here*
Facebook App Id: Found here https://developers.facebook.com/ (login select your app name)
Facebook Security Key: Also found here https://developers.facebook.com/
Facebook Access Token: Generated by clicking a button after after you fill the previous fields.

After doing that it took some hours for me to start showing up.

CreepyRavioli
tagDiv Member

I think, the ones that exist on the sidebar you can change from:
Appearance -> Widgets (change widget titles)

The ones on the home page you have to go to “Pages” and edit the page marked as “Front Page” in there edit the blocks titles.

I think that’s all.

CreepyRavioli
tagDiv Member

Thank you it worked!

CreepyRavioli
tagDiv Member

That might be a thing to report to the plugin developer since it isn’t a newsmag function.
But i’m curious, why do you need to hide a portion of the post in the first place, looks annoying for users.

CreepyRavioli
tagDiv Member

Well at least he fixed it, where did you get the coder?
I think you can get one on fiverr to do it for $5.

CreepyRavioli
tagDiv Member

Working well, you actually told me this on your first comment and i totally ignored it.
Thanks again!

CreepyRavioli
tagDiv Member

10/10 thanks! it works for me!

CreepyRavioli
tagDiv Member

Andrei, sorry to disturb once again! Your fix works for single post, i was wondering if a similar fix could be done for archives pages, see picture attache don my previous post, the grey box counters.

CreepyRavioli
tagDiv Member

Andrei you are a legend, solving all my weird problems. The fix worked i see disqus counter now.
Is there a way to apply a similar fix to archives? see pic:
http://i.imgur.com/0NkPle1.jpg

thank you!

CreepyRavioli
tagDiv Member

Andrei, thanks for guiding me on the proper direction, i was even looking at the the wrong file!
I think i might have managed to do it myself, could you tell me if this looks correct? It certainly works but i wanna be sure it’s not wrong, please have a look:

//init the array
$wp_query_args = array(
'ignore_sticky_posts' => 1,
'post_status' => 'publish',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'genre',
'field' => 'term_id',
'terms' => array( 1083 ),
'operator' => 'NOT IN',
),
),

);

thanks!

CreepyRavioli
tagDiv Member

How about Newsmag theme panel – custom code – custom css

.footer-social-wrap {
text-align: center;
}

CreepyRavioli
tagDiv Member

ANSWER: Edit /wp-content/themes/Newsmag/parts/page-author-box.php

Find:(line 20 approx)
<?php echo count_user_posts($part_cur_auth_obj->ID). ‘ ‘ . __td(‘POSTS’);?>`
Replace with:
<?php echo count_user_posts(
$userid = $part_cur_auth_obj->ID,
$post_type = [ 'post', 'page', 'cpt-1', 'cpt-2', 'cpt-n' ],
$public_only = false
). " POSTS";?>

CreepyRavioli
tagDiv Member

Hi! Limit number of posts is not on the filter tab, but on the first tab “General” scroll down you will see it.
And yes sort order is the last item of the filter tab don’t worry.

2nd issue.
it’s hard to pull off i never managed to do it. Maybe there is a way but i don’t know it. sorry!

CreepyRavioli
tagDiv Member

Well i ended up leaving the login without any captcha and replacing the register form with a link to the wordpress registration page, that one protected by google recaptcha. Also installed Ban Hammer and banned several domains like all the ones from http://discard.email/en/

I’m monitoring registrations, the ones that come through seem pretty legit, clean emails and credible usernames.

CreepyRavioli
tagDiv Member

Hey thanks for looking into it i am sure the code is being inserted the problem is it doesn’t render, if you want to see what i mean you will need to generate the keys for your domain here:
https://www.google.com/recaptcha/admin
And then insert “Site key” and “Secret Key” here:
http://your-site-url.com/wp-admin/admin.php?page=google-captcha.php

Once you do this you will see that while the code gets inserted fine the captcha doesn’t show up, i only was able to see it on firefox and IE if i click the login button while the page is still loading:
http://i.imgur.com/rTH7sGn.jpg

CreepyRavioli
tagDiv Member

So ok. I’ve been reading old posts recommendations but nobody posted a concrete solution.
I did not achieve it yet but i think i’m close.

The file that needs to be modified is this:
/wp-content/themes/Newsmag/parts/header/top-menu.php

I want to use this plugin:
https://wordpress.org/plugins/google-captcha/

Because it provides a method to work with custom login forms, like newsmag’s:
https://wordpress.org/support/topic/recaptcha-not-showing-in-custom-form?replies=2

So basically you add this on the right spot of top-menu.php:
<?php if( function_exists( 'gglcptch_display' ) ) { echo gglcptch_display(); } ; ?>

I’ve done it with mixed results:
On Firefox:
it shows up ONLY if you click login/join while the page is still loading, if you wait for the page to load completely and then click login/join then recapctha then it doesn’t show up.

On Internet explorer:
Same as firefox.

On CHROME:
The recaptcha doesn’t show up ever.

I’ve read around and i think the problem is AJAX and that captcha is loading inside a modal popup div.

So, is there a way to make this work? thank you!

CreepyRavioli
tagDiv Member

Yeah i figured you needed a function. I knew that method and there was a slight change you used that plugin so i mentioned it. Hope you find a way! (:

CreepyRavioli
tagDiv Member

If you are using “W3 total cache” or whiling to start you can do it with it.
Go to Performane – Minify (don’t worry no need to minify them), insert the url of the css and choose embed to footer from the dropdown.
That’s it.
You can do it for any css or js in the page.
minify

CreepyRavioli
tagDiv Member

Working beautifully thanks! i can’t believe it was so easy. looks awesome!

CreepyRavioli
tagDiv Member

I used to disable the wordpress bar for everyone who isn’t admin but i guess i’ll just leave it there. thanks both.

CreepyRavioli
tagDiv Member

Dashboard – NewsMag – Custom Code – Custom CSS:

.comments {
display: none;
}

That should do it.

Viewing 25 posts - 26 through 50 (of 59 total)