tomystein
Forum Replies Created
-
whatsapp is not taking any thumbnail of any page on the site.. only on whatsapp..
disabled the caching didn’t helpForum: Plugins
In reply to: Which community translations options do you recommend??
Forum: Plugins
In reply to: [Mandatory Field] Any updates on redevelopment?Same question..
Can you give me some clues, instructions on how to do it.
I guess there is a very simple shortcode or request that can be done, with what you already achieved and have.Then, I’ll make it.
Thank you!
Forum: Plugins
In reply to: [Contributer - Guest Posting] Facebook Login ErrorNow I see that I opened a topic for the same issue.
What was the solution?
Please help! 🙂Forum: Plugins
In reply to: [Social Metrics Tracker] How do I display top shared widget?Is it possible to display exactly as it shows on the backend?
Just with a shortcode or a pre-ready widget?
I think it will be really popular and obvious to have.
Maybe I would just omit the comments part for the widget, since it is less a priority and less common to see many results as shares and views..Forum: Plugins
In reply to: [Social Metrics Tracker] How do I display top shared widget?Can you tell me how do I make this code a “shortcode”? In order to display on a text widget..
And how do I limit that to 5 posts only?
// Do a meta query $args = array( 'order' => 'DESC', 'orderby' => 'meta_value_num', 'meta_key' => 'socialcount_TOTAL', 'post_status' => 'publish', 'post_type' => 'post' ); $wp_query = new WP_Query( $args ); // The Loop if ($wp_query->have_posts()) : while ($wp_query->have_posts()) : $wp_query->the_post(); // DISPLAY POST HERE endwhile; endif; Status API Training Shop Blog AboutThank you!
Forum: Plugins
In reply to: [Social Metrics Tracker] How do I display top shared widget?Can you please write a simple code for a 5 top shared posts widget? please…. 🙂
I am sure that it will increase a lot the use of your plugin since it is something people use, and of course it will help me and I will be really thankful!Forum: Plugins
In reply to: [Contact Form 7] [contact-form-7 404 "Not Found"] on multisiteOr at least try to provide a shortcut solution if not the full one.
Maybe a way to create one global contact form outside the system or creating a template for it, i don’t know..
Forum: Plugins
In reply to: [Contact Form 7] [contact-form-7 404 "Not Found"] on multisiteHi,
Of course I am using the correct code.
This is what you page says and it’s not related to the problem:
The code [contact-form-7 404 “Not Found”] is a sign that the contact form specified by the shortcode (described in the previous answer) couldn’t be found. Make sure you are using the correct shortcode.
Please try to check that since I saw at least 10 different posts about it, related to multisite.
I don’t want to open and configure the plugin in 110 websites on my multisite installation – it doesn’t make sense.
Instead, it should support multisite and be able to setup cf7 once and post the shortcode everywhere without problems..
So this is not the solution or related to the it anyway.
I hope we will find a solution for that. Can’t you make it support Multisite, to recognize that the code is coming from one of the sites but still run it successfully?Thanks
Forum: Fixing WordPress
In reply to: weird 302 redirect from all pages to homepageDo you think it’s a problem with my htaccess, plugins or my hosting provider?
I am struggling with it some time..[Moderator Note: No bumping. If it’s that urgent, consider hiring someone.]
Forum: Networking WordPress
In reply to: How to change the default theme to existing sites on Multisite?this worked for me.
UPDATE wp_options SET option_value='test' WHERE option_name='template' OR option_name='stylesheet';Forum: Networking WordPress
In reply to: How to change the default theme to existing sites on Multisite?When I try this,
UPDATE wp_3_options SET template = 'templatedir';It gives me an error:
#1054 – Unknown column ‘template’ in ‘field list’Forum: Networking WordPress
In reply to: How to change the default theme to existing sites on Multisite?Do I need to update current_theme as well?
You mentioned template and stylesheet only.
Forum: Networking WordPress
In reply to: How to change the default theme to existing sites on Multisite?I think I will use Excel to create all the wp_options and then use the command you recommended, which I was thinking about as well 🙂
Thanks.