Search Results for 'github'

Results from the Forum
Catalin
tagDiv Staff

Hello Scottseol,

Please keep in mind that our theme has two mobile design -> the mobile responsive and the mobile theme plugin. The mobile responsive will display the same desktop layout but it was optimized for tablets and mobile devices. The second one is Mobile Theme and for more information about this concept, please consult here -> https://forum.tagdiv.com/the-mobile-theme/
If you are using the Mobile theme and this will not work as properly, notice that issue happens due to WP Super Cache.
Try to refresh your page and check the results. Clear all your caches after this. Also, try to remove all the server caches and if you do not have any access to do this, you should consult the hosting provider and request this task.
Please notice that the mobile theme makes some troubles due to WP Super Cache plugin. Also, the WP Super Cache plugin is compatible with the mobile devices, but if you are using the Mobile Theme, please notice that you should make some changes for a better working. This could be a problem from wp super cache and not the browser. If you use the plugin, please use this method to fix the issue:
Use this link and add the customization as marked here: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there. Otherwise, if you do not want to make these changes you should simply disable the mobile theme until the WP Super Cache plugin will be updated.

Thanks for your understanding!

Bogdan B.
tagDiv Staff

Hello Andreas,

Please use this guide to properly set wp super cache: https://forum.tagdiv.com/cache-plugin-install-and-configure/
Also wp super cache has a flaw in it;s code that should be corrected.
https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows in the provided link.
Let us know if you still have trouble with wp super cache.

Thank you!

electrodrome
Participant
#0

Github is a social network for programmers.
My website has the focus of programming.
An entry option for social networks would be very helpful.
Could this be added in the next update? That would be nice!

Greatz Andy

Bogdan B.
tagDiv Staff

Hello,
The mobile theme is very sensitive to caching. Please only use wp super cache and these settings: https://forum.tagdiv.com/cache-plugin-install-and-configure/
Also please contact your host and have them disable any hosting side cache.
Wp super cache also has a flaw in it;s code that must be adjusted as shown here:
https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows in the provided link.

Thank you!

pstgibson
Participant
#0

I a plugin called “WP JOB MANAGER” installed
I need to implement a custom login page. I was told to insert a snippet into my theme functions.php file.
Where do I insert this snippet in Newspaper functions.php?

See forum discussion below:

Changing Login Redirects
When clicking ‘login’ links in both Job and Resume Manager, they will default to the WordPress login page (because that is the only login page these plugins know about!). If you want to send the user to a custom login page instead, you can use a small snippet in your theme functions.php file.

This snippet will redirect all login links to the specified page (just replace /login-page/ on line 3 with the slug of your custom login page):

add_filter( ‘login_url’, ‘my_login_page’, 10, 2 );
function my_login_page( $login_url, $redirect ) {
return home_url( ‘/login-page/?redirect_to=’ . $redirect );
}
view rawfunctions.php hosted with ❀ by GitHub
If you want different pages to redirect to different login pages, then you can use the snippets below instead:

↑ Back to Top Job Manager
Submit Job Page
/** Code goes in theme functions.php **/
add_filter( ‘submit_job_form_login_url’, ‘custom_submit_job_form_login_url’ );

function custom_submit_job_form_login_url() {
return ‘http://someurl.com’;
}
view rawgistfile1.txt hosted with ❀ by GitHub
Job Dashboard
/** Code goes in theme functions.php **/
add_filter( ‘job_manager_job_dashboard_login_url’, ‘custom_job_manager_job_dashboard_login_url’ );

function custom_job_manager_job_dashboard_login_url() {
return ‘http://someurl.com’;
}
view rawgistfile1.txt hosted with ❀ by GitHub
↑ Back to Top Resume Manager
Submit Resume Page
/** Code goes in theme functions.php **/
add_filter( ‘submit_resume_form_login_url’, ‘custom_submit_resume_form_login_url’ );

function custom_submit_resume_form_login_url() {
return ‘http://someurl.com’;
}
view rawgistfile1.php hosted with ❀ by GitHub
Candidate Dashboard
/** Code goes in theme functions.php **/
add_filter( ‘resume_manager_candidate_dashboard_login_url’, ‘custom_resume_manager_candidate_dashboard_login_url’ );

function custom_resume_manager_candidate_dashboard_login_url() {
return ‘http://someurl.com’;
}
view rawgistfile1.txt hosted with ❀ by GitHub
↑ Back to Top Job Manager Alerts
/** Code goes in theme functions.php **/
add_filter( ‘job_manager_alerts_login_url’, ‘custom_job_manager_alerts_login_url’ );

function custom_job_manager_alerts_login_url() {
return ‘http://someurl.com’;
}
view rawgistfile1.txt hosted with ❀ by GitHub
↑ Back to Top Job Manager Bookmarks
/** Code goes in theme functions.php **/
add_filter( ‘job_manager_bookmark_form_login_url’, ‘custom_job_manager_bookmark_form_login_url’ );

function custom_job_manager_bookmark_form_login_url() {
return ‘http://someurl.com’;
}

Bogdan B.
tagDiv Staff

Hello,

It could be a hosting side cache as this seems to be the case more and more. Please contact your host and have them disable any hosting side cache.
Super cache has a flaw that needs adjusting by modifying the code like so: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows in the provided link.

Let us know if you still have trouble with this.
Thanks.

Catalin
tagDiv Staff

Hello @sortofrobot,

Try to refresh your page and check the results. Clear all your caches after this. Also, try to remove all the server caches and if you do not have any access to do this, you should consult the hosting provider and request this task.
Please notice that the mobile theme makes some troubles due to WP Super Cache plugin. Also, the WP Super Cache plugin is compatible with the mobile devices, but if you are using the Mobile Theme, please notice that you should make some changes for a better working. This could be a problem from wp super cache and not the browser. If you use the plugin, please use this method to fix the issue:
Use this link and add the customization as marked here: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there. Otherwise, if you do not want to make these changes you should simply disable the mobile theme until the WP Super Cache plugin will be updated.

Hi @eemskrant,

Please keep in mind that the Cache Enabler plugin is not tested with our theme and we have no idea about the theme behavior with this item, sorry!

Hope this helps!

Thanks for your understanding!

Catalin
tagDiv Staff

Hello techdigg,

Try to refresh your page and check the results. Clear all your caches after this. Also, try to remove all the server caches and if you do not have any access to do this, you should consult the hosting provider and request this task.
Please notice that the mobile theme makes some troubles due to WP Super Cache plugin. Also, the WP Super Cache plugin is compatible with the mobile devices, but if you are using the Mobile Theme, please notice that you should make some changes for a better working. This could be a problem from wp super cache and not the browser. If you use the plugin, please use this method to fix the issue:
Use this link and add the customization as marked here: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there.

Hope this helps!

Thanks for your understanding!

jkellerer
tagDiv Member

With your pagebuilder, can I replicate that same experience / style? Please I would download and try it, but the GitHub link in the forum is broken.

Right now I had to just hard code pictures and links, but that is not a good long-term update.

I also see that there is a VC update available. Maybe you can push that sooner than later? Not sure when you get access.

simchris
tagDiv Member

Correction: I’m actually using the final BETA from the Github site from Dec./Jan., not the WPION version, which is a rev or three newer.

simchris
tagDiv Member

I think the SHIM was abandoned, due to the successor being the BETA plugin “TagDiv Composer”…

The trick right now if the Github page is still down, is to get the free version of the “WPION” theme from their commercial website and use the TD composer plugin included with that. This is what I’m doing on the Newsmag 3.1 theme in place of the ooooold shim workaround. For me that stopped working when we moved to 3x version of Newsmag and finally moved to PHP 5.6 from 5.4 in prep for 7.

I’m actually considering switching out Newsmag to WPION paid version.

Note the TD Composer “might” not work, but should work. You will have to redo your home page layout again, but trick is to make a snapshot of it while working with old version, and then “map” that out using the new version of TD Composer … much improved over the shim!

I suppose I was one of several people who “caused” the shim dev in first place as our old server would spike to 72 vs 0.8 with VC back in 2014. But shim pretty much retired.

Hope that helped.

(( I don’t work here. ))

Bladl
tagDiv Member

Hi,

I can understand that you can not test the individual plugins. But actually it is very sad that the login in your theme has no protection. You could at least install a security, the spam is nowadays a real problem and through your login form you can spam alien people or simply log in automatically.

Unfortunately, the installation did not work despite your screencast and this help from WordPress ReCaptcha Integration https://github.com/mcguffin/wp-recaptcha-integration/wiki/Custom-Themes-and-Forms not worked. Do you have a tip? Or can you redirect the login link to the standard login instead of your login pop-up?

Bogdan B.
tagDiv Staff

Hello,

You can add a Custom Link to your menu item and add the HTML for the cart icon: http://fortawesome.github.io/Font-Awesome/icon/shopping-cart/
You will have to use the font awesome 4 menus plugin.

Thank you!

Bogdan B.
tagDiv Staff

Hello,

1) Please only use wp super cache and these settings: https://forum.tagdiv.com/cache-plugin-install-and-configure/

2) Super cache has a flaw that needs adjusting by modifying the code like so: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there.

3) And the third and most important step, please contact your host and have them remove any hosting side cache. This seems to be the case more and more where the hosting provides caching from the host side. In many cases that is not compatible with wordpress themes.

Thank you!

Catalin
tagDiv Staff

Hello tonyalex,

I have checked your website and I did not saw any problems with your theme, as you can see here -> https://www.screencast.com/t/CPqcUH68CS1W Try to refresh your page and check the results. Clear all your caches after this. Also, try to remove all the server caches and if you do not have any access to do this, you should consult the hosting provider and request this task.
Please notice that the mobile theme makes some troubles due to WP Super Cache plugin. Also, the WP Super Cache plugin is compatible with the mobile devices, but if you are using the Mobile Theme, please notice that you should make some changes for a better working. This could be a problem from wp super cache and not the browser. If you use the plugin, please use this method to fix the issue:
Use this link and add the customization as marked here: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there.

Hope this helps!

Thanks for your understanding!

jeumpanews
Participant
#0

Hi, I understand that I am very late in this particular issue, but I still use the previous version of VC builder Version 4.12.1. I didn’t update the VC plugin since the information was announced many month ago due to our website is still new and we were moving our hosting server back then, and frankly very busy with focusing on updating content.

Anyway, now I got issues with the old plugin since I think it didn’t work anymore as is should. I just checked in again on tagDIV forum, but when I visited the “Our new page builder is available on GitHub” topic, the post isn’t available, both for the instruction and the TAG home made plugin.

My related questions are:

1. Please advise on this matter.

2. What is the current plugin for page builder should I use? My plugin page give me notification for the new Virtual Composer update which is version: 5.0.1. but it should be downloade separately and install it back again. Or should I use tagDIV home made plugin? Where can I download the latest plugin.

3. In any plugin that I will use later on, do I have to remake my front page from the beginning or will it automaticly keep the current design that I use right now?

4. Please kindly to provide step by step on how to update the plugin since remaking my frontpage will take sometime?

I appreciate if there is more that I should know on this matter and thank you for your kind attention.

Catalin
tagDiv Staff

Hello Vicky,

Please notice that the W3 Total Cache is not tested with our theme, sorry! You should use only the WP Super Cache plugin because this is our tested caching plugin. For more information about settings of WP Super cache, please consult here -> https://forum.tagdiv.com/cache-plugin-install-and-configure/
Please notice that the mobile theme makes some troubles due to WP Super Cache plugin. Also, the WP Super Cache plugin is compatible with the mobile devices, but if you are using the Mobile Theme, please notice that you should make some changes for a better working. This could be a problem from wp super cache and not the browser. If you use the plugin, please use this method to fix the issue:
Use this link and add the customization as marked here: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there.
If you need more assistance regarding on your images, please provide your website URL so we can take a closer look.

Thanks for the message!

simchris
tagDiv Member

It did work with newsmag 3.1 (just used it few minutes ago); but was then removed from Github. So, the “works with newsmag” version is no longer available for download on github it looks like, so … The version with ionmag is different, it seems and designed for ionmag, not other TD themes.

I think they are ‘testing’ the waters of eventually offering TD Composer as alternate to VC for Newspaper and then Newsmag, but that has been an “in the works” idea for two years now.

I would guess they should remove the “sticky” from the top of the main forum here, since it’s actually “not” on github for download at the moment, nor the past month.

Bogdan B.
tagDiv Staff

Hello,

This could be a problem from wp super cache. If you use the plugin, please use this method to fix the issue:
Use this link and add the customization as marked here: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there.

Thank you!

Catalin
tagDiv Staff

Hello Rony123456,

Please ensure that you are using the latest version of the theme and also, the most recent version of required plugins which come bundled with the theme packet. If you are using some untested plugins, try to disable all of them, clear all your caches and check the results. If the problem is still there, please provide some screenshots with the issue and also, the URL so I can inspect it closer.
Please notice that the mobile theme makes some troubles due to WP Super Cache plugin. Also, the WP Super Cache plugin is compatible with the mobile devices, but if you are using the Mobile Theme, please notice that you should make some changes for a better working. This could be a problem from wp super cache and not the browser. If you use the plugin, please use this method to fix the issue:
Use this link and add the customization as marked here: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there.

Hope this helps!

Thanks for your understanding!

adamess
Participant
#0

I would really like to use the tagDiv composer but when I go to edit a page I get a red bloak at the top of the page which says:

Errors happened during tdcIframeData.init() -> bindViewsModelsWrappers()!

I see this has been reported here:

https://www.wpion.com/members/topic/errors-happened-during-tdciframedata-init-bindviewsmodelswrappers/

and here too: (also by me here):

https://github.com/tagDiv/ionMag/issues/2

Do you have a solution YET?

This website is my personal website and I am open to technical solutions no matter how complex 😀

I notice this issue was reported 2 months 2 weeks ago, so that means you have been working hard and you already have a solution ?????????

Catalin
tagDiv Staff

Hello solidpumba,

I have inspected your website and I noticed that you do not have the mobile theme enabled, right? Please notice that the mobile theme makes some troubles due to WP Super Cache plugin. Also, the WP Super Cache plugin is compatible with the mobile devices, but if you are using the Mobile Theme, please notice that you should make some changes for a better working. This could be a problem from wp super cache and not the browser. If you use the plugin, please use this method to fix the issue:
Use this link and add the customization as marked here: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there.

Hope this helps!

Thanks for your understanding!

Catalin
tagDiv Staff

Hello Mudit,

1)Please notice that the speed of your website depends on how well your site is optimized. Notice that is not a simple task and if you do not have any experience in this regard you will do not bring good results for the theme. Also, notice that we have a speed optimization tutorial but this is addressed only to advanced users. So, if you follow the steps which are presented in this tutorial here -> https://forum.tagdiv.com/how-to-make-the-site-faster/ you can increase the page speed loading and if you are not aware of the steps in this regard, please consider hiring a freelancer/developer to help you because the speed optimization services is not covered by our support policy, as you can read here -> https://forum.tagdiv.com/support-policy-2/ Check our documentation here -> https://forum.tagdiv.com/requirements-for-newspaper/ regarding on dedicated server to fit to our requirements.
Please keep in mind that at the moment, we cannot provide optimization services because this task involve time-consuming and we do not afford to do this, sorry! We only can provide support for basic theme settings.
If you are not aware of these steps which are needed to take in this regard, please consider hiring a freelancer/developer to help you because we cannot provide custom work at the moment, sorry!
2)The WP Super Cache plugin is compatible with the mobile devices, but if you are using the Mobile Theme, please notice that you should make some changes for a better working. This could be a problem from wp super cache and not the browser. If you use the plugin, please use this method to fix the issue:
Use this link and add the customization as marked here: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there.

Hope this helps!

Thanks for your understanding!

Catalin
tagDiv Staff

Hello Pedro,

The WP Super Cache plugin is compatible with the mobile devices, but if you are using the Mobile Theme, please notice that you should make some changes for a better working. This could be a problem from wp super cache and not the browser. If you use the plugin, please use this method to fix the issue:
Use this link and add the customization as marked here: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there.

Thanks for your understanding!

Catalin
tagDiv Staff

Hello PedroMiguelMoreira,

This caching plugin is compatible with the mobile devices, but if you are using the Mobile Theme, please notice that you should make some changes for a better working. This could be a problem from wp super cache and not the browser. If you use the plugin, please use this method to fix the issue:
Use this link and add the customization as marked here: https://github.com/Automattic/wp-super-cache/pull/185/files
Edit wp-cache-phase1.php and add the green code from the right column as it shows there.

Thanks for your understanding!

Viewing 25 results - 176 through 200 (of 336 total)