jchris
Forum Replies Created
-
Done. With pleasure!
/chris
Bingo!
It was however WordPress > Settings > General as the screenshot showed.
Thank you very much for your help!
/chris
This might help. The link parameter is there in a flex container 614 x 0. https://drive.google.com/file/d/1bgy8Vck22Ac9t63OJMS42GgdwlDKyjYU/view?usp=drive_link
/chris
Also: I am using the EduPress theme: https://drive.google.com/file/d/13A_gXrAeRroPrB2CIO7hVe5lDhIVPiyI/view?usp=drive_link
And very few plugins: https://drive.google.com/file/d/1bQo9j4iKL2AcG_0uoEeWke4papMweX49/view?usp=drive_link
/chris
Thanks for the answer. However I tried that but without being able to show the create account link on the checkout page.
Cource price settings here: https://drive.google.com/file/d/1fgqdF0gNWJfuPxoAg9SZT2Z7i_6h6hOM/view?usp=drive_link
Checkout settings here: https://drive.google.com/file/d/1ebFePH_QShcVgtVVncuanJY0eObcWrYi/view?usp=drive_link
Checkout screen in FF browser private window: https://drive.google.com/file/d/1vZgm-_UaYrafxpw9iDisFxefZCctC-Vt/view?usp=drive_link
Could there be another setting?
Best regards,
/chris
Forum: Themes and Templates
In reply to: [EduPress] Enrolment in free courcesThank you! And I apologize for the mixup! Been on it most of the day and I am afraid that my focus has been slightly degraded 😉
Best regards!
/chrisForum: Themes and Templates
In reply to: [EduPress] Enrolment in free courcesHello again,
Maybe I expressed myself badly…
Or should I understand it as that the theme depends on that visitors are logged in to a wp site account for all courses that are not free/open, i e the “There is no enrollment requirement”-tag is set?
My prototype site is here: https://www.chrisjangelov.se/
Forum: Plugins
In reply to: [Link Library] Link table doesn’t adapt to mobile screenYou were right, I had not tested to display the listing in a list format, only as a table. Problem solved.
Thank you very much!
@angelo_nwl
Thank you. I will look into that.
/chrisForum: Plugins
In reply to: [IdeaPush] Ide page 404 and no ideas shown on startThank you. That helped for the 404 problem.
Unfortunately it didn’t have any effect on my other problem.
I have a working idea page with the short code on it.
When visiting that page I see the head (Title, “Get your idea to 100 to be reviewed”, Filters (grayed), searchbox (grayed), a thick line and “No ideas found matching this criteria.Solution (In my case)
I found that there was a conflict with the “The SEO framework” plugin https://theseoframework.com/
After disabling that plugin everything seem to worw fine./chris
Forum: Plugins
In reply to: [Link Library] Category treeThank you. It looks great. I will try thi solution and report back.
Forum: Plugins
In reply to: [WP Glossary] Request for localized sortingThanks for the answer. I am afraid it is a bit past my capacity…
Anywhere I can read up on it?
/chris
Forum: Networking WordPress
In reply to: Move blog between multisitesThanks for the answer. Now I know and can stop wasting time 🙂
Forum: Networking WordPress
In reply to: wp 3.2 , new sites not workingProblem solved after Ipstenus last advice.
This is how:
The wamp server was not installed with mod_rewrite on. It turned out to be very easy to do. (Example as if wamp is running)
1: Click on the green wamp icon. (Bottom, right on the screen)
2: Click “Stop all services”.
3: Repeat step 1 when the icon has turned red.
4: Hover “Apache” and a submenu opens.
5: Hover “Apache modules” and yet a submenu opens.
6: Click on “rewrite_module” if it is not already checked.
7: Click on the wamp icon once more and chose “Start all services”.
8: Happy blogging!
If the rewrite_module alreday is checked in step 6 – Sorry, you have another problem.Thanks for your help.!
/chrisForum: Networking WordPress
In reply to: wp 3.2 , new sites not workingI don’t know if permalinks were working. I did a new install and immediately turned it into a multi site. Premalinks in default mode are now working on the MAIN site.
This is my .htaccess: (it is in the www root directory, as are index.php and the other wp files)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
</IfModule>